:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-low: #f4f5f7;
  --surface-muted: #eceef1;
  --ink: #0c1117;
  --muted: #2f353d;
  --outline: #c4c7cd;
  --primary: #0b1219;
  --on-primary: #ffffff;
  --brand-bronze: #8f5f42;
  --deep: #0f1419;
  --deep-elevated: #1a2128;
  --on-deep: #f3f1ec;
  --accent-panel: #ffffff;
  --accent-card: #ffffff;
  --radius: 4px;
  --wrap: 1600px;
  --page-gutter: 24px;
  --section-gap: clamp(64px, 8vw, 96px);
  --gutter: 24px;
  --title-gap: 10px;
  --lead-gap: 20px;
  --section-head-gap: 40px;
  --head-nav-h: 96px;
  --marquee-h: 0px;
  --head-h: calc(var(--head-nav-h) + var(--marquee-h));
  /* Type: Plus Jakarta Sans — Apple-like calm scale (footer-club baseline) */
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --text-xs: 0.75rem;     /* 12px — eyebrows */
  --text-sm: 0.9375rem;   /* 15px — body / lead (footer-club p) */
  --text-base: 0.9375rem; /* same as body baseline */
  --text-md: 1.0625rem;   /* 17px — rare emphasis */
  --text-lg: 1.125rem;    /* 18px — card titles */
  --text-title: clamp(1.35rem, 2.4vw, 1.75rem);
  --text-display: clamp(1.5rem, 2.6vw, 2rem);
  --fw-body: 500;
  --fw-ui: 600;
  --fw-display: 700;
  --lh-body: 1.55;
  --lh-tight: 1.2;
  --tracking-title: -0.03em;
  --shadow: none;
  --line: rgb(12 17 23 / 8%);
  --line-strong: rgb(12 17 23 / 14%);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: var(--text-base);
  font-weight: var(--fw-body);
  line-height: var(--lh-body);
  font-optical-sizing: auto;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; display: block; height: auto; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  margin: 0;
  font-weight: var(--fw-display);
  letter-spacing: var(--tracking-title);
  line-height: var(--lh-tight);
  color: var(--primary);
}
h1 { font-size: var(--text-display); }
h2 { font-size: var(--text-title); }
h3 { font-size: var(--text-lg); }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
dl { margin: 0; }

.wrap {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

/* Hero / page containers — padding-block only; never reset padding-inline */
.stitch-about-hero-wrap,
.stitch-products-hero-wrap,
.stitch-ddp-hero-wrap,
.stitch-qc-hero-wrap,
.stitch-oem-hero-wrap,
.stitch-contact-hero-wrap,
.stitch-res-hero-wrap,
.hero-wrap {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

/* Full site container inside flex/grid heroes */
:is(
  .hero,
  .stitch-about-hero,
  .stitch-products-hero,
  .stitch-ddp-hero,
  .stitch-contact-hero,
  .stitch-oem-hero,
  .stitch-qc-hero
) > .wrap {
  flex: 0 1 auto;
  align-self: center;
  width: 100%;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--primary);
  color: #fff;
  padding: 6px 10px;
  border-radius: var(--radius);
  z-index: 100;
}
.skip:focus { top: 8px; }

.eyebrow {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.75;
  margin-bottom: 8px;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.btn:active {
  transform: scale(0.98);
}
.btn-dark {
  background: var(--primary);
  color: var(--on-primary);
  border-color: var(--primary);
}
.btn-dark:hover {
  background: var(--deep-elevated);
  border-color: var(--deep-elevated);
}
.btn-light {
  background: #fff;
  color: var(--primary);
  border-color: rgb(198 198 205 / 42%);
}
.btn-light:hover {
  background: var(--surface-muted);
  border-color: rgb(154 104 71 / 45%);
}
.btn-ghost-light {
  border-color: rgb(255 255 255 / 42%);
  color: #fff;
  background: transparent;
}
.btn-ghost-light:hover {
  background: rgb(255 255 255 / 16%);
  border-color: rgb(255 255 255 / 78%);
}
.btn-ghost {
  border-color: rgb(198 198 205 / 45%);
  color: var(--primary);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--surface-low);
  border-color: rgb(154 104 71 / 40%);
}
.btn-sm { min-height: 42px; padding: 10px 20px; }
.btn-block { width: 100%; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-weight: 700;
  color: var(--primary);
}
.text-link:hover {
  color: var(--brand-bronze);
}
.text-link:hover span { transform: translateX(4px); }
.text-link span { transition: transform 0.2s; }

/* header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-bottom: 1px solid rgb(198 198 205 / 30%);
  transition: background 0.25s ease, backdrop-filter 0.25s ease;
}
.site-header.is-scrolled {
  background: rgb(247 249 251 / 82%);
  backdrop-filter: blur(12px);
}
.site-header.is-scrolled .site-marquee {
  border-bottom-color: rgb(255 255 255 / 8%);
}
.site-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 40px;
  grid-template-areas: "logo tools burger";
  align-items: center;
  gap: 12px 10px;
  max-width: none;
  width: 100%;
  margin: 0;
  padding-inline: var(--page-gutter);
  min-height: var(--head-nav-h);
}

/* top announcement marquee */
.site-marquee {
  --marquee-duration: 28s;
  --marquee-bg: #111111;
  --marquee-color: #ffffff;
  flex: 0 0 auto;
  height: var(--marquee-h, 52px);
  overflow: hidden;
  background: var(--marquee-bg);
  color: var(--marquee-color);
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}
.site-marquee-track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  animation: site-marquee-scroll var(--marquee-duration) linear infinite;
}
.site-marquee--pause:hover .site-marquee-track {
  animation-play-state: paused;
}
.site-marquee-content {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0;
  white-space: nowrap;
}
.site-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.site-marquee-item + .site-marquee-item::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
  margin-right: 0.15rem;
}
.site-marquee-item a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.18s ease;
}
.site-marquee-item a:hover {
  opacity: 0.88;
}
@keyframes site-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .site-marquee-track {
    animation: none;
    width: 100%;
    justify-content: center;
  }
  .site-marquee-content[aria-hidden="true"] {
    display: none;
  }
}
.site-logo {
  grid-area: logo;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  line-height: 0;
  color: var(--primary);
}
.site-logo img {
  display: block;
  height: clamp(30px, 3.6vw, 40px);
  width: auto;
}
.site-logo.light { color: #fff; }
.site-header,
.site-header-inner,
.site-nav {
  overflow: visible;
}
.site-nav {
  display: none;
  grid-area: nav;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0 24px;
  min-width: 0;
  white-space: nowrap;
}
.site-nav > a,
.site-nav .nav-trigger {
  display: inline-flex;
  align-items: center;
  height: 44px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: inset 0 -2px 0 transparent;
}
.site-nav > a:hover,
.site-nav > a.is-active,
.site-nav .nav-trigger:hover,
.site-nav .nav-item.is-open > .nav-trigger,
.site-nav .nav-item.is-active > .nav-trigger {
  color: var(--primary);
}
.site-nav > a.is-active,
.site-nav .nav-item.is-active > .nav-trigger {
  box-shadow: inset 0 -2px 0 var(--primary);
}
.nav-item {
  position: relative;
  flex: 0 0 auto;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.nav-trigger {
  gap: 5px;
}
.nav-caret {
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.65;
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.nav-item.is-open > .nav-trigger .nav-caret {
  transform: rotate(180deg);
}
.nav-panel {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 80;
  min-width: 208px;
  margin: 0;
  padding: 10px 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgb(12 17 23 / 12%);
  /* Hover bridge: keep menu open while pointer moves from trigger → panel */
  transform: translateY(0);
}
.nav-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 14px;
}
.nav-item[data-nav="export"] .nav-panel,
.nav-item[data-nav="resources"] .nav-panel {
  left: auto;
  right: 0;
}
.nav-panel[hidden] { display: none !important; }
.nav-panel a {
  display: block;
  padding: 9px 16px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.3;
}
.nav-panel a:hover,
.nav-panel a:focus-visible {
  background: var(--surface-low);
  outline: none;
}
.nav-panel-label {
  display: block;
  padding: 4px 16px 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.nav-panel-sep {
  display: block;
  height: 1px;
  margin: 6px 12px;
  background: var(--line);
  border: 0;
}

.drawer-group {
  border-bottom: 1px solid var(--surface-low);
  padding-bottom: 8px;
  margin-bottom: 4px;
}
.drawer-group-title {
  display: block;
  padding: 14px 0 6px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.drawer-group a {
  padding-left: 12px;
  font-size: 16px;
}
.site-tools {
  display: flex;
  align-items: center;
  gap: 6px;
  grid-area: tools;
  justify-self: end;
}
.icon-btn {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 5px;
  background: var(--surface-low);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.icon-btn:hover,
.icon-btn:focus-visible {
  background: var(--surface-muted, rgb(12 17 23 / 6%));
  color: var(--primary);
  outline: none;
}
.icon-btn:focus-visible {
  box-shadow: inset 0 0 0 2px var(--primary);
}
.icon-btn svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lang-switch {
  position: relative;
}
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 60;
  min-width: 168px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--surface);
  border: 1px solid rgb(198 198 205 / 28%);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgb(15 23 42 / 12%);
}
.lang-menu[hidden] { display: none !important; }
.lang-option {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-option:hover,
.lang-option:focus-visible {
  background: var(--surface-low);
  outline: none;
}
.lang-option.is-active {
  background: var(--surface-low);
  color: var(--primary);
  font-weight: 700;
}

.burger {
  grid-area: burger;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.burger:hover,
.burger:focus-visible {
  background: var(--surface-muted, rgb(12 17 23 / 6%));
  color: var(--primary);
  outline: none;
}
.burger:focus-visible {
  box-shadow: inset 0 0 0 2px var(--primary);
}
.burger svg {
  grid-area: 1 / 1;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.burger .burger-close {
  display: none;
}
.burger[aria-expanded="true"] .burger-menu {
  display: none;
}
.burger[aria-expanded="true"] .burger-close {
  display: block;
}

@media (max-width: 767px) {
  /* Hide Account on small screens; keep search, cart, language */
  .site-tools > .icon-btn[aria-label="Account"] {
    display: none;
  }
  .site-tools {
    gap: 2px;
  }
  .icon-btn {
    width: 44px;
    height: 44px;
  }
  .icon-btn svg {
    width: 22px;
    height: 22px;
  }
}

.search-bar {
  border-top: 1px solid rgb(198 198 205 / 30%);
  background: rgb(255 255 255 / 90%);
  padding: 12px var(--page-gutter) 16px;
}
.search-bar[hidden] { display: none !important; }
.search-bar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: calc(var(--wrap) - (var(--page-gutter) * 2));
  margin: 0 auto;
  min-height: 48px;
  padding: 0 14px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--outline);
}
.search-bar-inner svg {
  width: 18px;
  height: 18px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  opacity: 0.55;
}
.search-bar-inner input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
}
.search-close {
  font-size: 18px;
  color: var(--muted);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  transition: background 0.2s ease, color 0.2s ease;
}
.search-close:hover {
  background: var(--surface-low);
  color: var(--primary);
}

.drawer {
  position: fixed;
  inset: var(--head-h) 0 0;
  z-index: 45;
  background: var(--surface);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: auto;
  border-top: 1px solid var(--outline);
}
.drawer[hidden] { display: none !important; }
.drawer a,
.drawer-cart {
  padding: 14px 0;
  border-bottom: 1px solid var(--surface-low);
  font-weight: 600;
  text-align: left;
  transition: color 0.2s ease;
}
.drawer a:hover,
.drawer-cart:hover {
  color: var(--brand-bronze);
}
.drawer-cart { margin-top: 12px; }
.drawer-lang {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--surface-low);
}
.drawer-label {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.drawer-lang-option {
  display: block;
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--surface-low);
  background: transparent;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}
.drawer-lang-option:hover {
  color: var(--brand-bronze);
}
.drawer-lang-option.is-active { color: var(--primary); }
.drawer-lang-option:last-of-type { border-bottom: 0; }

/* hero */
.hero {
  position: relative;
  margin-top: var(--head-h);
  min-height: 600px;
  height: clamp(600px, 72vh, 819px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.hero-slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 40%);
}
.hero-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: clamp(48px, 8vh, 88px);
}
.hero-bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%);
  pointer-events: none;
}
.hero-carousel-controls {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.hero-carousel-btn {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 88%);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 94%);
  color: var(--ink);
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 10px 28px rgb(12 17 23 / 16%);
  transform: translateY(-50%);
  transition:
    background-color 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-carousel-btn.is-prev {
  left: max(16px, calc(var(--page-gutter) - 4px));
}
.hero-carousel-btn.is-next {
  right: max(16px, calc(var(--page-gutter) - 4px));
}
.hero-carousel-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-carousel-btn:hover,
.hero-carousel-btn:focus-visible {
  background: #fff;
  border-color: var(--brand-bronze);
  color: var(--brand-bronze);
  box-shadow: 0 12px 32px rgb(12 17 23 / 20%);
}
.hero-carousel-btn:active {
  transform: translateY(-50%) scale(0.97);
  box-shadow: 0 4px 14px rgb(12 17 23 / 14%);
}
.hero-carousel-btn:focus-visible {
  outline: 2px solid var(--brand-bronze);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .hero-carousel-btn {
    transition: none;
  }
}
.hero-carousel-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 2px;
  pointer-events: none;
  background: rgb(255 255 255 / 18%);
  border-radius: 0;
  overflow: hidden;
}
.hero-carousel-progress-fill {
  display: block;
  width: 0;
  height: 100%;
  background: #fff;
  transform-origin: left center;
}
.hero.is-playing:not(.is-paused) .hero-carousel-progress-fill {
  animation: hero-carousel-progress var(--hero-interval, 6.4s) linear forwards;
}
.hero.is-paused .hero-carousel-progress-fill {
  animation-play-state: paused;
}
.hero.is-paused .hero-scroll-ring {
  animation-play-state: paused;
}
@keyframes hero-carousel-progress {
  from { width: 0; }
  to { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }
  .hero-carousel-progress {
    display: none;
  }
}
@media (max-width: 767px) {
  .hero-carousel-btn {
    width: 38px;
    height: 38px;
    box-shadow: 0 6px 18px rgb(12 17 23 / 14%);
  }
  .hero-carousel-btn.is-prev {
    left: 12px;
  }
  .hero-carousel-btn.is-next {
    right: 12px;
  }
  .hero-bottom {
    bottom: 0;
  }
}
.hero-inner {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
  color: #fff;
}
.hero h1 {
  font-size: var(--text-display);
  line-height: 1.15;
  letter-spacing: var(--tracking-title);
  margin: 0 0 10px;
  color: #fff;
}
.hero-lead {
  font-size: var(--text-sm);
  line-height: var(--lh-body);
  max-width: 36rem;
  margin: 0 auto 20px;
  color: rgb(255 255 255 / 85%);
  font-weight: 500;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.hero-scroll {
  position: relative;
  display: block;
  color: var(--ink);
  text-decoration: none;
  pointer-events: auto;
}
.hero-scroll-shell {
  position: relative;
  display: block;
  width: 148px;
  height: 74px;
  overflow: visible;
  background: var(--bg);
  border-radius: 148px 148px 0 0;
  box-shadow: 0 -10px 36px rgb(15 23 42 / 8%);
}
.hero-scroll-widget {
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 112px;
  height: 112px;
  overflow: visible;
  transform: translate(-50%, 50%);
}
.hero-scroll-ring {
  position: absolute;
  inset: 0;
  width: 112px;
  height: 112px;
  overflow: visible;
  color: var(--muted);
  fill: currentColor;
  font-family: var(--font);
  font-size: 7.25px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform-origin: 50% 50%;
  animation: hero-scroll-spin 16s linear infinite;
}
.hero-scroll-ring text {
  fill: currentColor;
}
.hero-scroll-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hero-scroll-core svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-scroll:hover .hero-scroll-core,
.hero-scroll:focus-visible .hero-scroll-core {
  transform: translate(-50%, calc(-50% + 2px));
  box-shadow: 0 8px 20px rgb(15 23 42 / 22%);
}
.hero-scroll:focus-visible {
  outline: 2px solid rgb(255 255 255 / 80%);
  outline-offset: 4px;
  border-radius: var(--radius);
}
@keyframes hero-scroll-spin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-ring { animation: none; }
}

/* sections */
.section {
  padding: clamp(64px, 10vw, var(--section-gap)) 0;
  border-bottom: 1px solid rgb(198 198 205 / 20%);
  scroll-margin-top: var(--head-h);
}
.section-head { margin-bottom: 40px; }
.section-head.center { text-align: center; max-width: 48rem; margin-inline: auto; }
.section-head.row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section-head h2 {
  font-size: var(--text-title);
  margin-bottom: 12px;
}
.section-head p { color: var(--muted); max-width: 40rem; }

/* paths */
.paths { background: var(--bg); }
.paths-head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.paths-head-copy {
  max-width: 42rem;
}
.paths-head h2 {
  font-size: var(--text-title);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 12px;
}
.paths-head p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 40rem;
}
.paths-head .btn {
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.paths-grid {
  display: grid;
  gap: var(--gutter);
  grid-template-columns: 1fr;
}
.path-card {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.path-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}
.path-card:hover .path-card-bg { transform: scale(1.05); }
.path-card-overlay {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 50%);
}
.path-card-body {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  color: #fff;
}
.path-tag {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 8px;
}
.path-card-body h3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 16px;
  color: #fff;
}
.path-card-body p {
  max-width: 20rem;
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.8;
  color: #fff;
}
.path-card-body .btn-light {
  letter-spacing: 0.06em;
  min-width: 12rem;
}

/* about — keep factory background; image left + copy right */
.about-split {
  --about-blue: #234f7f;
  --about-red: #e31f2b;
  --about-text: #4f5963;
  --about-muted: #7d8790;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: clamp(560px, 68vh, 820px);
  padding: clamp(72px, 10vw, 112px) 0;
  background: #fff;
  color: var(--about-text);
}
.about-split::before,
.about-split::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.about-split::before {
  z-index: -2;
  background: url("../images/about-factory-high-key-gpt-image-2.webp") center / cover no-repeat;
}
.about-split::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 88%) 0%, rgb(255 255 255 / 72%) 46%, rgb(255 255 255 / 28%) 72%, transparent 90%),
    linear-gradient(180deg, rgb(255 255 255 / 18%) 0%, transparent 20%, transparent 80%, rgb(255 255 255 / 36%) 100%);
}
.about-split-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  grid-template-areas: "visual content";
  gap: clamp(28px, 4vw, 40px) clamp(36px, 5vw, 64px);
  width: 100%;
  align-items: center;
  /* Keep .wrap horizontal gutters — do not zero padding-inline */
  padding-block: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.about-split-visual {
  grid-area: visual;
  margin: 0;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-low);
  box-shadow: none;
}
.about-split-visual img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.about-split-content {
  grid-area: content;
  display: grid;
  gap: clamp(24px, 3.5vw, 36px);
  min-width: 0;
}
.about-split-head {
  display: grid;
  gap: 12px;
  max-width: 40rem;
}
.about-split-kicker {
  margin: 0;
  color: var(--about-red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
}
.about-split-head h2 {
  margin: 0;
  color: var(--primary);
  font-size: var(--text-display);
  line-height: 1.12;
  letter-spacing: -0.03em;
}
.about-split-head p {
  margin: 0;
  max-width: 46ch;
  color: var(--about-text);
  font-size: 16px;
  line-height: 1.65;
}
.about-split-facts {
  list-style: none;
  margin: 0;
  padding: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  border-top: 1px solid rgb(17 26 36 / 10%);
  max-width: 34rem;
}
.about-split-facts li {
  min-width: 0;
  display: grid;
  gap: 4px;
}
.about-split-facts strong {
  color: var(--primary);
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.about-split-facts strong span {
  margin-left: 2px;
  font-size: 0.55em;
  letter-spacing: 0;
}
.about-split-facts li > span {
  color: var(--about-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}
.about-split-facts .is-accent strong {
  color: var(--brand-bronze, #8f5f42);
}
.about-split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.about-split-actions .btn-ghost {
  background: rgb(255 255 255 / 72%);
  border-color: rgb(17 26 36 / 14%);
}

@media (min-width: 900px) {
  .about-split-panel {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
    gap: clamp(28px, 4vw, 40px) clamp(40px, 5vw, 72px);
  }
  .about-split-visual img {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 899px) {
  .about-split {
    min-height: 0;
    padding: clamp(56px, 10vw, 80px) 0;
  }
  .about-split::before {
    background-position: 48% top;
    background-size: cover;
    opacity: 0.7;
  }
  .about-split::after {
    background: linear-gradient(180deg, rgb(255 255 255 / 40%) 0%, rgb(255 255 255 / 86%) 36%, rgb(255 255 255 / 94%) 100%);
  }
  .about-split-panel {
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "content";
  }
  .about-split-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }
  .about-split-visual img {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }
}

/* process */
.process { background: var(--surface); }
.process-head {
  max-width: 40rem;
  margin-bottom: 40px;
}
.process-head h2 {
  font-size: var(--text-title);
  line-height: 1.2;
  margin-bottom: 12px;
}
.process-head p {
  color: var(--muted);
  line-height: 1.65;
  max-width: 38rem;
}
.process-rail {
  list-style: none;
  margin: 0;
  padding: 0 0 8px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 78vw);
  gap: var(--gutter);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.process-card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--bg);
  border: 1px solid rgb(198 198 205 / 22%);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.process-card:hover {
  border-color: rgb(198 198 205 / 45%);
}
.process-media {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-low);
}
.process-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.process-card:hover .process-media img {
  transform: scale(1.04);
}
.process-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(180deg, transparent, rgb(15 23 42 / 72%));
  pointer-events: none;
}
.process-body {
  display: grid;
  gap: 10px;
  padding: 20px;
}
.process-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgb(198 198 205 / 22%);
}
.process-icon img {
  width: 20px;
  height: 20px;
}
.process-body h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.process-body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

/* products */
.products { background: var(--bg); }
.products-head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.products-head h2 {
  font-size: var(--text-title);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 12px;
}
.products-head p {
  color: var(--muted);
  max-width: 40rem;
  line-height: 1.6;
}
.products-head .btn {
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.products-grid {
  display: grid;
  gap: var(--gutter);
  grid-template-columns: 1fr;
}
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid rgb(198 198 205 / 20%);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.product-card:hover { border-color: rgb(198 198 205 / 50%); }
.product-pic {
  background: var(--surface-low);
  min-height: 220px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}
.products-empty {
  grid-column: 1 / -1;
  padding: 32px;
  text-align: center;
  color: var(--muted);
}
.products-empty a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.products-empty a:hover {
  color: var(--brand-bronze);
}
.product-pic img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: contain;
  transition: transform 0.4s;
}
.product-card:hover .product-pic img { transform: scale(1.04); }
.product-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.product-brand {
  font-size: 12.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.product-body h3 { font-size: 1.125rem; margin: 8px 0 16px; }
.product-prices {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
}
.product-prices > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.product-prices > div + div {
  padding-top: 12px;
  border-top: 1px solid rgb(198 198 205 / 20%);
}
.price-label {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.product-prices strong { font-size: 1.25rem; }
.product-prices s { font-size: 14px; opacity: 0.45; margin-right: 6px; }
.product-prices a {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.product-prices a:hover {
  color: var(--brand-bronze);
}
.product-feats {
  flex: 1;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--muted);
  opacity: 0.8;
}
.product-feats li + li { margin-top: 6px; }

/* qc */
.qc { background: var(--bg); }
.qc-grid {
  display: grid;
  gap: var(--gutter);
}
.qc-grid article img {
  width: 100%;
  height: clamp(220px, 18vw, 280px);
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 16px;
  background: var(--surface-low);
}
.qc-grid h4 { margin-bottom: 8px; font-size: 14px; letter-spacing: 0.05em; text-transform: uppercase; }
.qc-grid p { font-size: 16px; color: var(--muted); }

/* oem */
.oem { background: var(--surface); }
.oem-grid {
  display: grid;
  gap: 32px;
  align-items: start;
}
.oem-intro {
  max-width: 28rem;
}
.oem-intro h2 {
  font-size: var(--text-display);
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 800;
}
.oem-intro p {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 1.0625rem;
  line-height: 1.65;
}
.oem-intro .btn {
  box-shadow: none;
}
.oem-cards {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.oem-cards li {
  padding: 32px;
  background: var(--bg);
  border: 1px solid rgb(198 198 205 / 12%);
  border-radius: var(--radius);
  transition: border-color 0.25s ease;
}
.oem-cards li:hover {
  border-color: rgb(198 198 205 / 28%);
}
.oem-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--primary);
  box-shadow: none;
  transition: background 0.25s ease, color 0.25s ease;
}
.oem-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.oem-cards li:hover .oem-icon {
  background: var(--primary);
  color: #fff;
}
.oem-cards h4 {
  margin-bottom: 8px;
  font-size: 1.125rem;
  font-weight: 700;
}
.oem-cards p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

/* logistics */
.logistics {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}
.logistics-bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  pointer-events: none;
}
.logistics-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logistics-inner {
  position: relative;
  z-index: 1;
}
.logistics-head {
  max-width: 48rem;
  margin-bottom: 32px;
}
.logistics-head h2 {
  font-size: var(--text-title);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.logistics-head p {
  color: var(--muted);
  max-width: 42rem;
  line-height: 1.6;
}
.logistics-grid {
  display: grid;
  gap: var(--gutter);
  margin-bottom: 32px;
}
.logistics-grid article {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  background: #0b1219;
  border: 1px solid rgb(17 26 36 / 14%);
  border-radius: var(--radius);
  color: #fff;
  transition: border-color 0.35s ease, transform 0.35s ease;
}
.logistics-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
  transform: scale(1.02);
  transition: transform 0.55s ease;
}
.logistics-card-overlay {
  position: absolute;
  inset: 0;
  opacity: 1;
  background:
    linear-gradient(
      180deg,
      rgb(11 18 25 / 42%) 0%,
      rgb(11 18 25 / 72%) 48%,
      rgb(11 18 25 / 88%) 100%
    );
  transition: background 0.35s ease;
}
.logistics-card-overlay.is-strong {
  background:
    linear-gradient(
      180deg,
      rgb(11 18 25 / 48%) 0%,
      rgb(11 18 25 / 76%) 48%,
      rgb(11 18 25 / 90%) 100%
    );
}
.logistics-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 280px;
  padding: 32px;
}
.logistics-grid article:hover {
  border-color: rgb(143 95 66 / 45%);
}
.logistics-grid article:hover .logistics-card-bg {
  transform: scale(1.06);
}
.logistics-grid article:hover .logistics-card-overlay {
  background:
    linear-gradient(
      180deg,
      rgb(11 18 25 / 36%) 0%,
      rgb(11 18 25 / 68%) 48%,
      rgb(11 18 25 / 86%) 100%
    );
}
.logistics-grid article:hover .logistics-icon,
.logistics-grid article:hover h3,
.logistics-grid article:hover .badge {
  color: #fff;
}
.logistics-grid article:hover dt {
  color: rgb(255 255 255 / 72%);
}
.logistics-grid article:hover dd,
.logistics-grid article:hover p,
.logistics-grid article:hover li {
  color: rgb(255 255 255 / 92%);
}
.logistics-grid article.is-featured {
  background: #0b1219;
  color: #fff;
  border-color: rgb(143 95 66 / 40%);
  box-shadow: none;
}
.logistics-grid article.is-featured h3,
.logistics-grid article.is-featured p,
.logistics-grid article.is-featured .badge,
.logistics-grid article.is-featured li {
  color: #fff;
}
.logistics-grid article.is-featured:hover {
  background: #0b1219;
  border-color: rgb(143 95 66 / 55%);
}
.logistics-grid article.is-featured:hover h3,
.logistics-grid article.is-featured:hover p,
.logistics-grid article.is-featured:hover li {
  color: #fff;
}
.logistics-grid article.is-featured .logistics-card-bg {
  opacity: 1;
}
.logistics-grid article.is-featured .logistics-card-overlay {
  opacity: 1;
}
.logistics-grid article.is-featured:hover .logistics-card-bg {
  opacity: 1;
}
.logistics-grid article.is-featured:hover .logistics-card-overlay {
  opacity: 1;
}
.logistics-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: #fff;
}
.logistics-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.logistics-icon.is-light { color: #fff; }
.logistics-grid .badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius);
  background: rgb(255 255 255 / 18%);
  color: #fff;
}
.logistics-grid h3 {
  margin: 0 0 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.logistics-grid dl {
  display: grid;
  gap: 14px;
  margin: auto 0 0;
  padding: 0;
  font-size: 15px;
  line-height: 1.45;
}
.logistics-grid dl > div {
  display: grid;
  gap: 4px;
}
.logistics-grid dt,
.logistics-grid dd {
  margin: 0;
  padding: 0;
}
.logistics-grid dt {
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 68%);
}
.logistics-grid dd {
  color: rgb(255 255 255 / 92%);
  max-width: 36ch;
}
.logistics-grid article.is-featured p {
  font-size: 16px;
  line-height: 1.55;
  opacity: 0.9;
  margin-bottom: 16px;
}
.logistics-grid article.is-featured dt,
.logistics-grid article.is-featured li {
  color: rgb(255 255 255 / 85%);
}
.logistics-grid ul {
  margin: 0;
  padding: 0;
  font-size: 14px;
  display: grid;
  gap: 8px;
  list-style: none;
}
.logistics-grid ul li {
  position: relative;
  padding-left: 18px;
  opacity: 0.85;
}
.logistics-grid ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-size: 16px;
}
.logistics-cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  background: var(--surface-muted);
  border-radius: var(--radius);
  align-items: flex-start;
}
.logistics-cta-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  flex: none;
}
.logistics-cta-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.logistics-cta-copy strong {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 4px;
}
.logistics-cta-copy p {
  font-size: 16px;
  color: var(--muted);
  max-width: 36rem;
}
.logistics-cta .btn {
  box-shadow: none;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* consult */
.consult { background: var(--surface); }
.consult-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
.consult-grid figure {
  margin: 0;
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
}
.consult-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.consult-grid h2 {
  font-size: var(--text-title);
  margin-bottom: 12px;
}
.consult-grid > div > p { color: var(--muted); margin-bottom: 16px; }
.consult-grid ul {
  margin: 0 0 24px;
  padding-left: 1.2rem;
  list-style: disc;
  color: var(--muted);
  font-size: 16px;
}
.consult-grid li + li { margin-top: 8px; }
.consult .note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
  opacity: 0.8;
}

/* cta band */
.cta-band {
  position: relative;
  overflow: visible;
  text-align: center;
  border-bottom: 0;
  isolation: isolate;
}
.cta-band-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media (max-width: 900px), (prefers-reduced-motion: reduce) {
  .cta-band-bg {
    background-attachment: scroll;
  }
}
.cta-band-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgb(11 18 25 / 72%);
}
.cta-band-content {
  position: relative;
  z-index: 1;
}
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}
.cta-band-note {
  margin: 0 auto 8px !important;
  font-size: 13px;
  color: rgb(255 255 255 / 72%);
}
.cta-band h2 {
  font-size: var(--text-title);
  margin-bottom: 12px;
  color: #fff;
}
.cta-band > .wrap > p,
.cta-band-content > p {
  color: rgb(255 255 255 / 78%);
  max-width: 40rem;
  margin: 0 auto 24px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgb(198 198 205 / 30%);
}
.stats strong {
  display: block;
  font-size: clamp(1.125rem, 2vw, 1.75rem);
  margin-bottom: 4px;
}
.stats span {
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* global reach */
.global-reach {
  background: var(--surface);
  border-bottom: 0;
}
.global-reach-head {
  position: relative;
  text-align: center;
  max-width: 52rem;
  margin: 0 auto 40px;
}
.global-reach-watermark {
  position: absolute;
  top: -0.35em;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  margin: 0;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  color: rgb(15 23 42 / 5%);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.global-reach-head .eyebrow {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}
.global-reach-head h2 {
  position: relative;
  font-size: var(--text-title);
  font-weight: var(--fw-display);
  letter-spacing: var(--tracking-title);
  line-height: var(--lh-tight);
  margin: 0 0 var(--title-gap, 10px);
}
.global-reach-lead {
  position: relative;
  max-width: 42rem;
  margin: 0 auto 20px;
  color: var(--muted);
  line-height: var(--lh-body);
  font-size: var(--text-sm);
}
.global-board {
  display: grid;
  gap: 28px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgb(198 198 205 / 22%);
}
.global-markets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.global-markets li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 22px 0;
}
.global-markets li + li {
  border-top: 1px solid rgb(198 198 205 / 22%);
}
.global-markets li > img {
  width: 48px;
  height: 48px;
}
.global-markets h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
}
.global-markets p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}
.global-flags {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 14px 16px;
  max-width: none;
  margin: 0 0 32px;
  padding: 4px 2px 10px;
  list-style: none;
  text-align: center;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.global-flags li {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 68px;
  pointer-events: none;
  scroll-snap-align: start;
}
.global-flags img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgb(198 198 205 / 35%);
  background: var(--surface-low);
}
.global-flags span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: var(--muted);
}
.global-map {
  margin: 0;
}
.global-map img {
  width: 100%;
  max-height: min(42vh, 420px);
  height: auto;
  object-fit: contain;
  display: block;
}
.global-reach-foot {
  text-align: center;
}
.global-reach-foot-en {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 700;
}

/* faq */
.faq { background: var(--bg); }
.faq-title {
  text-align: center;
  font-size: var(--text-title);
  margin-bottom: 32px;
}
.faq-acc {
  max-width: 48rem;
  margin: 0 auto;
  border-top: 1px solid rgb(198 198 205 / 30%);
}
.faq-item {
  border-bottom: 1px solid rgb(198 198 205 / 30%);
  padding: 16px 0;
}
.faq-item summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 18px; font-weight: 600; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin-top: 12px;
  font-size: 16px;
  color: var(--muted);
}

/* footer — IDC-inspired IA, industrial light + dark bar */
.site-footer {
  --footer-ink: #111a24;
  --footer-muted: rgb(17 26 36 / 62%);
  --footer-line: rgb(17 26 36 / 10%);
  --footer-surface: #f4f2ef;
  --footer-bar: #0b1219;
  background: var(--footer-surface);
  color: var(--footer-ink);
  padding: 0;
  margin-top: auto;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.site-footer::before,
.site-footer::after {
  display: none;
}
.site-footer > .wrap,
.site-footer .wrap {
  position: relative;
  z-index: 1;
}

.footer-promise {
  position: relative;
  isolation: isolate;
  padding: clamp(40px, 6vw, 72px) 0 clamp(28px, 4vw, 40px);
  border-bottom: 1px solid var(--footer-line, rgb(17 26 36 / 10%));
  background: transparent;
  background-image: none;
}
.site-footer > .footer-promise {
  padding-top: clamp(28px, 4vw, 40px);
  padding-bottom: clamp(20px, 2.5vw, 28px);
  background: var(--bg, #fff);
  background-image: none;
}
.site-footer > .footer-promise .footer-promise-inner {
  display: block;
  gap: 0;
  grid-template-columns: none;
}
.site-footer > .footer-promise .footer-promise-title {
  display: none;
}
.site-footer > .footer-promise .footer-promise-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 900px) {
  .site-footer > .footer-promise .footer-promise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .site-footer > .footer-promise .footer-promise-card {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 10px;
  }
  .site-footer > .footer-promise .footer-promise-icon {
    width: 22px;
    height: 22px;
  }
  .site-footer > .footer-promise .footer-promise-card h3 {
    margin: 0 0 4px;
    font-size: 0.92rem;
    line-height: 1.2;
  }
  .site-footer > .footer-promise .footer-promise-card p {
    font-size: 12.5px;
    line-height: 1.4;
  }
}
.footer-promise::before {
  display: none;
}
.footer-promise-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(28px, 4vw, 48px);
}
.footer-promise-title {
  margin: 0;
  max-width: 18ch;
  font-size: var(--text-title);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: var(--footer-ink);
  text-align: center;
}
.footer-promise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.footer-promise-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 16px;
  border-radius: var(--radius);
  border: 1px solid rgb(17 26 36 / 6%);
  box-shadow: 0 1px 2px rgb(17 26 36 / 4%);
}
.footer-promise-card.is-ship { background: #d9dee1; }
.footer-promise-card.is-oem { background: #ffdcd3; }
.footer-promise-card.is-service { background: #dae6df; }
.footer-promise-card.is-qc { background: #fdf0db; }
.footer-promise-icon {
  width: 32px;
  height: 32px;
  color: var(--footer-ink);
}
.footer-promise-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.footer-promise-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--footer-ink);
}
.footer-promise-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--footer-muted);
}

.footer-body {
  padding: clamp(36px, 5vw, 56px) 0 clamp(28px, 4vw, 40px);
  border-top: 1px solid var(--footer-line);
  background: #efece8;
}
.footer-body-grid {
  display: grid;
  gap: clamp(32px, 4vw, 48px);
  margin-bottom: clamp(36px, 5vw, 56px);
}
.footer-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 28px) 24px;
}
.footer-col h4,
.footer-contact-block h4,
.footer-locations h4 {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--footer-ink);
}
.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.footer-col li + li {
  margin-top: 0;
}
.footer-col a {
  font-size: 15px;
  font-weight: 400;
  color: var(--footer-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-col a:hover {
  color: var(--brand-bronze);
}

.footer-contact-block,
.footer-locations {
  min-width: 0;
}
.footer-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgb(17 26 36 / 12%);
  border-radius: var(--radius);
  background: #fff;
  color: var(--footer-ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.footer-contact-btn:hover {
  border-color: rgb(17 26 36 / 28%);
  background: #f9f7f5;
}
.footer-contact-btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}
.footer-contact-btn svg[fill="none"] {
  fill: none;
  stroke: var(--brand-bronze);
}
.footer-info-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.footer-info-list li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--footer-muted);
}
.footer-info-list strong {
  color: var(--footer-ink);
  font-weight: 700;
}
.footer-info-list a {
  color: var(--footer-ink);
  text-decoration: none;
  font-weight: 500;
}
.footer-info-list a:hover {
  color: var(--brand-bronze);
}
.footer-hours {
  font-size: 13px !important;
  color: var(--footer-muted);
}

.footer-contact-block .footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 16px 0 0;
}
.footer-contact-block .footer-social-link {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: #fff;
  transition: transform 0.15s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.footer-contact-block .footer-social-link:hover,
.footer-contact-block .footer-social-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgb(17 26 36 / 12%);
  outline: none;
}
.footer-contact-block .footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.footer-contact-block .footer-social-link[aria-label="Instagram"] {
  color: #fff;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
}
.footer-contact-block .footer-social-link[aria-label="Facebook"] {
  color: #fff;
  background: #1877f2;
  border-color: transparent;
}
.footer-contact-block .footer-social-link[aria-label="Instagram"]:hover,
.footer-contact-block .footer-social-link[aria-label="Instagram"]:focus-visible,
.footer-contact-block .footer-social-link[aria-label="Facebook"]:hover,
.footer-contact-block .footer-social-link[aria-label="Facebook"]:focus-visible {
  color: #fff;
  filter: brightness(1.06);
}

.footer-location + .footer-location {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--footer-line);
}
.footer-location strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--footer-ink);
}
.footer-location p {
  margin: 0 0 4px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--footer-muted);
}

.footer-club {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
  padding: clamp(28px, 4vw, 40px) 0 0;
  border-top: 1px solid var(--footer-line);
}
.footer-club h3 {
  margin: 0 0 var(--title-gap, 10px);
  font-size: var(--text-title);
  font-weight: var(--fw-display);
  letter-spacing: var(--tracking-title);
  color: var(--footer-ink);
}
.footer-club > p {
  margin: 0 0 var(--lead-gap, 20px);
  font-size: var(--text-sm);
  line-height: var(--lh-body);
  color: var(--footer-muted);
}
.footer-mail {
  display: flex;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  border: 1px solid rgb(17 26 36 / 14%);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.footer-mail:focus-within {
  border-color: rgb(17 26 36 / 36%);
}
.footer-mail input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--footer-ink);
  padding: 12px 14px;
  outline: none;
  font-size: 15px;
  font-weight: 500;
}
.footer-mail input::placeholder {
  color: rgb(17 26 36 / 42%);
}
.footer-mail button {
  background: var(--brand-bronze);
  color: #fff;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  transition: filter 0.18s ease, transform 0.15s ease;
}
.footer-mail button:hover {
  filter: brightness(1.06);
}
.footer-mail button:active {
  transform: scale(0.98);
}

.footer-bar {
  background: var(--footer-bar);
  color: #fff;
  padding: 0;
  border-top: 1px solid rgb(255 255 255 / 14%);
}
.footer-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.5rem;
  padding: 18px 0 22px;
  color: rgb(255 255 255 / 72%);
  font-size: 13px;
  line-height: 1.4;
  text-align: left;
}
.footer-bar-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1rem;
  min-width: 0;
}
.footer-bar-copy-text {
  display: inline;
}
.footer-bar-copy-text p {
  display: inline;
  margin: 0;
  color: rgb(255 255 255 / 72%);
  font-size: 13px;
}
.footer-bar-copy-text p + p::before {
  content: " · ";
  color: rgb(255 255 255 / 45%);
}
.footer-ssl {
  color: rgb(255 255 255 / 72%);
}
.footer-ssl::before {
  content: "";
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  margin-right: 0.35em;
  vertical-align: -0.05em;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='5' y='11' width='14' height='10' rx='1.5'/%3E%3Cpath d='M8 11V8a4 4 0 0 1 8 0v3'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='5' y='11' width='14' height='10' rx='1.5'/%3E%3Cpath d='M8 11V8a4 4 0 0 1 8 0v3'/%3E%3C/svg%3E") center / contain no-repeat;
}
.footer-bar-inner > button[data-cookie-prefs],
.footer-bar-copy > button[data-cookie-prefs] {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 0.14em;
  cursor: pointer;
}
.footer-bar-inner > button[data-cookie-prefs]:hover,
.footer-bar-copy > button[data-cookie-prefs]:hover {
  color: #fff;
}
.footer-bar-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 1rem;
  margin-left: auto;
}
.footer-bar-links a {
  font-size: 13px;
  color: rgb(255 255 255 / 72%);
  text-decoration: none;
  transition: color 0.18s ease;
}
.footer-bar-links a:hover {
  color: #fff;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
}
.footer-legal a {
  font-size: 13px;
  color: rgb(255 255 255 / 78%);
  text-decoration: none;
  transition: opacity 0.18s ease;
}
.footer-legal a:hover {
  opacity: 0.75;
  color: #fff;
}
.footer-copy-line {
  margin: 0;
  font-size: 13px;
  color: rgb(255 255 255 / 72%);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 767px) {
  .footer-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .footer-bar-links {
    margin-left: 0;
  }
}

@media (min-width: 768px) {
  .footer-promise-inner {
    grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
    align-items: center;
  }
  .footer-promise-title {
    text-align: left;
    max-width: 14ch;
  }
  .footer-promise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-promise-card {
    padding: 20px 18px;
  }
  .footer-body-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
    align-items: start;
  }
  .footer-link-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .footer-promise-card {
    grid-template-columns: auto 1fr;
  }
}

/* side dock + cart */
.side-dock {
  position: fixed;
  right: max(12px, calc(var(--page-gutter) - 40px));
  bottom: max(20px, 4vh);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  background: var(--surface);
  border: 1px solid rgb(198 198 205 / 45%);
  border-radius: var(--radius);
}
.side-dock-item {
  position: relative;
}
.side-dock-btn {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}
.side-dock-btn:hover,
.side-dock-btn:focus-visible,
.side-dock-item:focus-within .side-dock-btn {
  background: var(--surface-muted, rgb(12 17 23 / 6%));
  color: var(--primary);
  outline: none;
}
.side-dock-btn:focus-visible {
  box-shadow: inset 0 0 0 2px var(--primary);
}
.side-dock-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.side-dock-btn.is-whatsapp {
  color: #25d366;
}
.side-dock-btn.is-whatsapp svg {
  fill: currentColor;
  stroke: none;
}
.side-dock-item:hover .side-dock-btn.is-whatsapp,
.side-dock-item:focus-within .side-dock-btn.is-whatsapp,
.side-dock-btn.is-whatsapp:hover,
.side-dock-btn.is-whatsapp:focus-visible {
  color: #1fb855;
}
.side-dock-pop {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  z-index: 2;
  width: min(260px, calc(100vw - 96px));
  padding: 14px 14px 12px;
  border: 1px solid rgb(198 198 205 / 45%);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgb(15 23 42 / 12%);
  color: var(--ink);
  text-align: left;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(6px, -50%);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}
.side-dock-pop::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  width: 10px;
  height: 10px;
  border-right: 1px solid rgb(198 198 205 / 45%);
  border-bottom: 1px solid rgb(198 198 205 / 45%);
  background: #fff;
  transform: translateY(-50%) rotate(-45deg);
}
.side-dock-pop-kicker {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.side-dock-pop-title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.side-dock-pop-copy {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--muted);
}
.side-dock-pop-account {
  margin: 0 0 8px;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: var(--surface-low);
  font-size: 13px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  word-break: break-all;
}
.side-dock-pop-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
}
.side-dock-item.is-whatsapp .side-dock-pop-cta {
  color: #1fb855;
}
@media (hover: hover) and (pointer: fine) {
  .side-dock-item:hover .side-dock-pop,
  .side-dock-item:focus-within .side-dock-pop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(0, -50%);
  }
}
@media (hover: none) {
  .side-dock-item:focus-within .side-dock-pop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(0, -50%);
  }
}
.side-dock-top {
  display: none;
}
.side-dock-top.is-visible {
  display: grid;
}
.icon-btn.cart-open,
.side-dock-btn.cart-open {
  position: relative;
}
.cart-count {
  position: absolute;
  top: 6px;
  right: 6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brand-bronze, #9a6847);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  pointer-events: none;
}
.cart-count[hidden] {
  display: none !important;
}
.cart {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgb(11 18 25 / 52%);
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 32px);
}
.cart[hidden] { display: none !important; }
.cart-panel {
  width: min(620px, 100%);
  max-height: min(90vh, 860px);
  overflow: auto;
  background: var(--surface, #fff);
  padding: clamp(28px, 3.2vw, 40px);
  border: 1px solid rgb(17 26 36 / 10%);
  border-radius: var(--radius, 4px);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 55%) inset,
    0 28px 80px rgb(11 18 25 / 22%);
  position: relative;
  display: flex;
  flex-direction: column;
}
.cart-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--muted);
  border-radius: var(--radius, 4px);
  transition: background 0.2s ease, color 0.2s ease;
}
.cart-close:hover {
  background: var(--surface-low);
  color: var(--primary);
}
.cart-panel h3 {
  margin: 0 48px 10px 0;
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--ink, #0c1117);
}
.cart-panel > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 46ch;
  margin: 0 0 22px;
}
.cart-panel .btn {
  width: 100%;
  justify-content: center;
}
.cart-panel .btn + .btn { margin-top: 10px; }
.cart-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgb(17 26 36 / 10%);
}
.cart-footer .btn {
  width: 100%;
  justify-content: center;
  margin-top: 0 !important;
  min-height: 48px;
}
.cart-footer .btn + .btn {
  margin-top: 0;
}
.cart-footer .btn-dark {
  grid-column: 1 / -1;
}
.cart-panel > .btn {
  display: none;
}
.cart-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgb(17 26 36 / 10%);
}
.cart-items[hidden] {
  display: none !important;
}
.cart-item {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid rgb(17 26 36 / 8%);
  border-radius: 0;
  background: transparent;
}
.cart-item:last-child {
  border-bottom: 0;
}
.cart-item-media {
  display: block;
  width: 104px;
  height: 104px;
  border-radius: var(--radius, 4px);
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 50% 55%, #fff 0%, #eef1f5 100%);
  border: 1px solid rgb(17 26 36 / 8%);
}
.cart-item-thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cart-item-thumb.is-empty {
  background: var(--surface-low);
}
.cart-item-copy {
  min-width: 0;
  display: grid;
  gap: 6px;
}
.cart-item-model {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--ink);
  text-decoration: none;
}
.cart-item-model:hover {
  color: var(--brand-bronze);
}
.cart-item-tagline {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
}
.cart-item-qty {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgb(17 26 36 / 12%);
  border-radius: var(--radius, 4px);
  overflow: hidden;
  background: var(--surface-low, #f4f5f7);
}
.cart-qty-btn {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
}
.cart-qty-btn:hover {
  background: rgb(15 23 42 / 6%);
}
.cart-qty-value {
  min-width: 34px;
  text-align: center;
  font-size: 15px;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}
.cart-item-remove {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 8px;
  border-radius: var(--radius, 4px);
}
.cart-item-remove:hover {
  color: var(--primary);
  background: rgb(15 23 42 / 6%);
}

/* Quote panel: grow with content, use almost full viewport, avoid scroll when possible */
.cart:has(.quote-panel) {
  padding: 10px;
  align-items: center;
}
.quote-panel {
  max-height: calc(100vh - 20px);
  max-height: calc(100dvh - 20px);
  height: fit-content;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(20px, 2.2vw, 28px) clamp(22px, 2.6vw, 32px) clamp(18px, 2vw, 24px);
  scrollbar-width: thin;
}
.quote-panel > h3 {
  margin-bottom: 6px;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}
.quote-panel > p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.45;
  max-width: none;
}
.quote-panel .quote-product {
  margin: 0 0 12px;
  padding: 10px 0;
  border-top: 1px solid rgb(17 26 36 / 10%);
  border-bottom: 1px solid rgb(17 26 36 / 8%);
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
}
.quote-panel .quote-product[hidden] {
  display: none !important;
}
.quote-panel .quote-product .cart-item-media,
.quote-panel .quote-product .cart-item-thumb {
  width: 72px;
  height: 72px;
}
.quote-panel .quote-product .cart-item-model {
  font-size: 1rem;
}
.quote-panel .quote-product .cart-item-tagline {
  font-size: 13px;
  margin-top: 2px;
}
.quote-product-note {
  margin: 4px 0 0;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-bronze, #8f5f42);
}
.quote-form {
  display: grid;
  gap: 10px;
  flex: 0 0 auto;
}
.quote-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.quote-field {
  display: grid;
  gap: 4px;
}
.quote-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted, #5c6770);
}
.quote-field input,
.quote-field select,
.quote-field textarea {
  width: 100%;
  min-height: 40px;
  padding: 8px 11px;
  border: 1px solid rgb(17 26 36 / 14%);
  border-radius: var(--radius, 4px);
  background: var(--surface, #fff);
  color: var(--ink, #0c1117);
  font: inherit;
  font-size: 14px;
}
.quote-field textarea {
  min-height: 56px;
  max-height: 96px;
  resize: vertical;
  line-height: 1.4;
}
.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
  outline: none;
  border-color: var(--primary, #0b1219);
}
.quote-footer {
  margin-top: 2px;
  padding-top: 14px;
  gap: 8px;
}
.quote-footer .btn {
  min-height: 44px;
}

@media (max-width: 560px) {
  .cart-panel {
    width: 100%;
    max-height: min(92vh, 900px);
    padding: 24px 18px 20px;
  }
  .quote-panel {
    max-height: calc(100vh - 12px);
    max-height: calc(100dvh - 12px);
    padding: 18px 16px 16px;
  }
  .cart-item {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 0;
  }
  .cart-item-media {
    width: 80px;
    height: 80px;
  }
  .cart-footer {
    grid-template-columns: 1fr;
  }
  .quote-field-grid {
    grid-template-columns: 1fr;
  }
}

body.menu-open,
body.cart-open,
body.quote-open { overflow: hidden; }

@media (max-width: 767px) {
  .side-dock {
    right: 12px;
    bottom: 12px;
    padding: 6px;
    gap: 6px;
  }
  .side-dock-btn {
    width: 40px;
    height: 40px;
  }
}

/* responsive */
@media (min-width: 640px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 768px) {
  :root {
    --page-gutter: 64px;
  }
  .site-header-inner {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "logo nav tools";
    gap: 24px 32px;
  }
  .burger { display: none; }
  .site-nav {
    display: flex;
  }
  .paths-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
  }
  .products-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
  }
  .paths-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .qc-grid { grid-template-columns: repeat(4, 1fr); }
  .oem-grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 48px;
  }
  .oem-intro {
    position: sticky;
    top: calc(var(--head-h) + 24px);
    max-width: none;
  }
  .oem-cards { grid-template-columns: repeat(2, 1fr); }
  .logistics-grid { grid-template-columns: repeat(3, 1fr); }
  .logistics-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .logistics-cta-copy { flex: 1; }
  .global-board {
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
    gap: 40px;
    align-items: center;
  }
  .global-markets {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .consult-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .global-flags {
    display: grid;
    grid-template-columns: repeat(11, minmax(0, 1fr));
    overflow: visible;
    scroll-snap-type: none;
    max-width: 1100px;
    margin-inline: auto;
    margin-bottom: 40px;
    padding: 0;
    gap: 20px 12px;
  }
  .global-flags li {
    width: auto;
    flex: unset;
  }
  .global-flags img {
    width: 44px;
    height: 44px;
  }
  .global-flags span {
    font-size: 16px;
    letter-spacing: 0.04em;
  }
  .products-grid { grid-template-columns: repeat(4, 1fr); }
  .process-rail {
    grid-auto-flow: row;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-auto-columns: unset;
    gap: 18px;
    overflow: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }
  .process-media {
    aspect-ratio: 3 / 3.4;
  }
  .about-lifecycle-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .about-markets-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .about-audience-grid { grid-template-columns: 1fr 1fr; }
  .about-page-cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
  .about-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* about page */
.about-story { background: var(--bg); }
.about-prose {
  display: grid;
  gap: 16px;
}
.about-prose p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}
.about-stats-band {
  background: var(--surface);
  padding-top: 48px;
  padding-bottom: 48px;
}
.about-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}
.about-stats li {
  display: grid;
  gap: 8px;
}
.about-stats li > img {
  width: 24px;
  height: 24px;
}
.about-stats strong {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.about-stats span {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.45;
}
.about-lifecycle { background: var(--bg); }
.about-lifecycle-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
}
.about-lifecycle-grid li {
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid rgb(198 198 205 / 22%);
  border-radius: var(--radius);
}
.about-lifecycle-num {
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 10px;
}
.about-lifecycle-grid h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.about-lifecycle-grid p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}
.about-markets-section { background: var(--surface); }
.about-markets-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--gutter);
}
.about-markets-cards li {
  padding: 28px 24px;
  background: var(--bg);
  border: 1px solid rgb(198 198 205 / 22%);
  border-radius: var(--radius);
}
.about-markets-cards img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}
.about-markets-cards h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.about-markets-cards p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}
.about-audience { background: var(--bg); }
.about-audience-grid {
  display: grid;
  gap: var(--gutter);
}
.about-audience-grid article {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid rgb(198 198 205 / 22%);
  border-radius: var(--radius);
}
.about-audience-grid h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.about-audience-grid p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}
.about-page-cta {
  background: var(--primary);
  color: var(--on-primary);
  border-bottom: 0;
}
.about-page-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-page-cta h2 {
  font-size: var(--text-title);
  line-height: 1.15;
  margin-bottom: 10px;
}
.about-page-cta p {
  max-width: 40rem;
  font-size: 16px;
  line-height: 1.65;
  color: rgb(255 255 255 / 72%);
}
.about-page-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}
.about-page-cta .btn-dark {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.about-page-cta .btn-dark:hover {
  background: var(--surface-muted);
  border-color: rgb(198 198 205 / 55%);
}
.about-page-cta .btn-ghost {
  border-color: rgb(255 255 255 / 35%);
  color: #fff;
}
.about-page-cta .btn-ghost:hover {
  background: rgb(255 255 255 / 14%);
  border-color: rgb(255 255 255 / 72%);
}

/* inner pages — shared hero */
.page-hero,
.about-page-hero {
  position: relative;
  margin-top: var(--head-h);
  min-height: clamp(360px, 48vh, 480px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid rgb(198 198 205 / 20%);
}
.page-hero-bg,
.about-page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 42%;
}
.page-hero-overlay,
.about-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgb(15 23 42 / 78%) 0%,
    rgb(15 23 42 / 52%) 48%,
    rgb(15 23 42 / 28%) 100%
  );
}
.page-hero-content,
.about-page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  padding: clamp(48px, 8vw, 72px) 0 clamp(56px, 9vw, 80px);
  color: #fff;
}
.page-hero .eyebrow,
.about-page-hero .eyebrow {
  color: rgb(255 255 255 / 68%);
  opacity: 1;
}
.page-hero h1,
.about-page-hero h1 {
  font-size: var(--text-display);
  line-height: 1.12;
  margin: 12px 0 0;
  max-width: 22ch;
  color: #fff;
}
.page-hero-lead,
.about-page-lead {
  margin-top: 20px;
  max-width: 52rem;
  color: rgb(255 255 255 / 84%);
  font-size: var(--text-sm);
  line-height: 1.7;
}
.page-hero.is-light .page-hero-overlay {
  background: linear-gradient(
    90deg,
    rgb(247 249 251 / 96%) 0%,
    rgb(247 249 251 / 86%) 40%,
    rgb(247 249 251 / 18%) 100%
  );
}
.page-hero.is-light .page-hero-content,
.page-hero.is-light h1 {
  color: var(--primary);
}
.page-hero.is-light .page-hero-lead {
  color: var(--muted);
}
.page-hero.is-light .eyebrow {
  color: var(--primary);
  opacity: 0.7;
}
.page-hero.is-centered {
  align-items: center;
  text-align: center;
}
.page-hero.is-centered .page-hero-content {
  margin-inline: auto;
  max-width: 48rem;
}
.page-hero.is-centered h1 {
  max-width: none;
  margin-inline: auto;
}
.page-hero.is-tall {
  min-height: clamp(420px, 56vh, 600px);
  align-items: center;
}
.page-hero.is-dark .page-hero-overlay {
  background: rgb(15 23 42 / 62%);
}
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* value props band */
.page-value-band {
  background: var(--surface-low);
  border-bottom: 1px solid rgb(198 198 205 / 20%);
  padding: clamp(48px, 8vw, 64px) 0;
}
.page-value-grid {
  display: grid;
  gap: 32px;
}
.page-value-item {
  display: grid;
  gap: 12px;
}
.page-value-item img {
  width: 40px;
  height: 40px;
}
.page-value-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
}
.page-value-item p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

/* category filters */
.page-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgb(198 198 205 / 22%);
  margin-bottom: 40px;
}
.page-filter {
  padding: 10px 20px;
  border: 1px solid rgb(198 198 205 / 45%);
  border-radius: var(--radius);
  background: transparent;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: default;
}
.page-filter.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* product showcase cards */
.showcase-grid {
  display: grid;
  gap: 40px;
}
.showcase-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--surface);
  border: 1px solid rgb(198 198 205 / 28%);
  border-radius: var(--radius);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.showcase-card:hover {
  border-color: rgb(198 198 205 / 45%);
  box-shadow: 0 20px 40px rgb(15 23 42 / 6%);
}
.showcase-status {
  position: absolute;
  top: 28px;
  right: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--surface-low);
  border: 1px solid rgb(198 198 205 / 30%);
  border-radius: var(--radius);
}
.showcase-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}
.showcase-media {
  margin-bottom: 24px;
}
.showcase-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--surface-low);
}
.showcase-card h2 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 6px;
}
.showcase-card .showcase-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 16px;
}
.showcase-highlight {
  padding: 16px;
  margin-bottom: 20px;
  background: var(--bg);
  border: 1px solid rgb(198 198 205 / 22%);
  border-radius: var(--radius);
  font-size: 16px;
  line-height: 1.6;
}
.showcase-highlight strong {
  font-weight: 700;
}
.showcase-highlight .showcase-note {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
}
.showcase-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  padding-top: 20px;
  margin-bottom: 24px;
  border-top: 1px solid rgb(198 198 205 / 20%);
}
.showcase-specs dt {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.showcase-specs dd {
  font-size: 16px;
  font-weight: 600;
}

/* page steps */
.page-steps-section {
  background: var(--surface-low);
}
.page-steps-grid {
  display: grid;
  gap: 20px;
}
.page-step-card {
  padding: 28px 22px;
  text-align: center;
  background: var(--surface);
  border: 1px solid rgb(198 198 205 / 22%);
  border-radius: var(--radius);
}
.page-step-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--primary);
}
.page-step-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
}
.page-step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.page-step-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

/* feature splits (wholesale) */
.page-feature {
  display: grid;
  gap: 32px;
  align-items: center;
}
.page-feature-num {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1;
  color: rgb(198 198 205 / 55%);
  margin-bottom: 8px;
}
.page-feature h2 {
  font-size: var(--text-title);
  font-weight: 700;
  margin-bottom: 12px;
}
.page-feature p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}
.page-feature-media img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgb(198 198 205 / 22%);
}

/* tier + pipeline */
.tier-grid {
  display: grid;
  gap: var(--gutter);
  margin-bottom: var(--gutter);
}
.tier-card {
  padding: 36px 28px;
  background: var(--surface);
  border: 1px solid rgb(198 198 205 / 22%);
  border-radius: var(--radius);
  transition: box-shadow 0.25s ease;
}
.tier-card:hover {
  box-shadow: 0 10px 30px rgb(15 23 42 / 6%);
}
.tier-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.tier-card p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}
.pipeline {
  display: grid;
  gap: 28px;
  padding: 36px 28px;
  background: var(--surface-low);
  border: 1px solid rgb(198 198 205 / 22%);
  border-radius: var(--radius);
}
.pipeline-step {
  text-align: center;
}
.pipeline-num {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
}
.pipeline-step h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.pipeline-step p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 16rem;
  margin-inline: auto;
}

/* qc flow */
.qc-flow {
  display: grid;
  gap: 32px;
  position: relative;
}
.qc-flow-step {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}
.qc-flow-icon {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid rgb(198 198 205 / 28%);
  color: var(--primary);
}
.qc-flow-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
}
.qc-flow-step h3 {
  font-size: 1rem;
  font-weight: 700;
}
.qc-flow-label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.qc-flow-step p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 14rem;
}
.qc-report-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
.qc-report-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0 0 0 20px;
  border-left: 1px solid rgb(198 198 205 / 30%);
}
.qc-report-list li {
  padding-left: 8px;
}
.qc-report-list li + li {
  margin-top: 16px;
}
.qc-report-list strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.qc-report-list span {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}
.qc-report-media img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
}
.cert-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 64px;
}
.cert-item {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  opacity: 0.65;
  transition: opacity 0.2s ease;
}
.cert-item:hover {
  opacity: 1;
}
.cert-item svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.5;
}
.cert-item span {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* dark page cta */
.page-cta-dark {
  background: var(--primary);
  color: #fff;
  text-align: center;
  border-bottom: 0;
}
.page-cta-dark h2 {
  font-size: var(--text-title);
  line-height: 1.15;
  margin-bottom: 12px;
}
.page-cta-dark p {
  max-width: 40rem;
  margin: 0 auto 28px;
  font-size: 16px;
  line-height: 1.65;
  color: rgb(255 255 255 / 76%);
}
.page-cta-dark .btn-light {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.page-cta-dark .btn-light:hover {
  background: var(--surface-muted);
  border-color: rgb(198 198 205 / 55%);
}

/* logistics standalone */
.logistics-page .logistics {
  border-bottom: 0;
}
.incoterms-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 28px 0;
  background: var(--surface);
  border-bottom: 1px solid rgb(198 198 205 / 20%);
}
.incoterms-bar span {
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgb(198 198 205 / 35%);
  border-radius: var(--radius);
  color: var(--muted);
}

@media (min-width: 768px) {
  .page-value-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .page-steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tier-grid { grid-template-columns: 1fr 1fr; }
  .qc-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .qc-report-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .showcase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-steps-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .page-feature { grid-template-columns: 1fr 1fr; }
  .page-feature.is-reverse .page-feature-media { order: -1; }
  .pipeline { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; }
  .qc-flow { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Clean industrial editorial — mass through surface & type, not hairlines */
::selection {
  background: rgb(143 95 66 / 24%);
  color: var(--ink);
}

.site-header {
  background: rgb(255 255 255 / 96%);
  border-bottom: 0;
  box-shadow: 0 1px 0 rgb(12 17 23 / 7%);
}

.site-header.is-scrolled {
  background: rgb(255 255 255 / 92%);
}

:is(.eyebrow, .stitch-ddp-eyebrow, .stitch-map-eyebrow, .stitch-products-hero-kicker, .stitch-about-hero-kicker, .stitch-oem-hero-kicker, .stitch-qc-hero-kicker, .stitch-contact-hero-kicker, .stitch-res-hero-kicker, .stitch-res-kicker) {
  color: var(--brand-bronze);
  opacity: 1;
}

h1,
h2 {
  font-weight: 700;
}

.section {
  border-bottom: 0;
}

.hero-overlay {
  background: rgb(17 26 36 / 48%);
}

.about-split {
  --about-blue: #173b63;
  --about-red: var(--brand-bronze);
  --about-text: #394148;
  --about-muted: #666c70;
  background: #fff;
}

.about-split::after {
  background:
    linear-gradient(90deg, rgb(255 255 255 / 94%) 0%, rgb(255 255 255 / 82%) 40%, rgb(255 255 255 / 30%) 64%, transparent 84%),
    linear-gradient(180deg, rgb(255 255 255 / 18%) 0%, transparent 24%, transparent 78%, rgb(244 244 241 / 36%) 100%);
}

.process {
  background: var(--surface);
  color: var(--ink);
  border-bottom-color: rgb(17 26 36 / 12%);
  overflow-x: clip;
}

.process-head p,
.process-body p {
  color: var(--muted);
}

.process-card {
  background: var(--accent-card);
  border-color: rgb(17 26 36 / 14%);
}

.process-card:hover {
  border-color: rgb(154 104 71 / 72%);
}

.process-icon {
  background: var(--surface-low);
  border-color: rgb(17 26 36 / 12%);
}

.process-icon img {
  filter: grayscale(1);
  opacity: 0.7;
}

.oem {
  background: var(--accent-panel);
  color: var(--ink);
  border-bottom-color: rgb(17 26 36 / 12%);
}

.oem-intro p,
.oem-cards p {
  color: var(--muted);
}

.oem-cards li {
  background: var(--accent-card);
  border-color: rgb(17 26 36 / 14%);
}

.oem-cards li:hover {
  border-color: rgb(154 104 71 / 58%);
}

.oem-icon {
  background: var(--surface-low);
  color: var(--brand-bronze);
  box-shadow: none;
}

.oem-cards li:hover .oem-icon,
.oem .btn-dark {
  background: var(--brand-bronze);
  color: #fff;
  border-color: var(--brand-bronze);
}

.oem .btn-dark:hover {
  background: #835739;
  border-color: #835739;
}

.cta-band-overlay {
  background: rgb(11 18 25 / 72%);
}

.cta-band {
  color: #fff;
}

.cta-band > .wrap > p,
.cta-band-content > p,
.cta-band .stats span {
  color: rgb(255 255 255 / 78%);
}

.cta-band .stats {
  border-top-color: rgb(255 255 255 / 18%);
}

.cta-band .stats strong {
  color: #fff;
}

.cta-band .btn-dark {
  background: var(--brand-bronze);
  border-color: var(--brand-bronze);
}

.cta-band .btn-dark:hover {
  background: #835739;
  border-color: #835739;
}

:is(.product-card, .logistics-grid article, .consult-grid figure) {
  border-color: rgb(17 26 36 / 14%);
}

/* Shared scroll-reveal choreography */
/* Never hide whole page sections — only their registered children animate. */
html.reveal-enabled main > section[data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}
html.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 760ms cubic-bezier(0.32, 0.72, 0, 1),
    transform 860ms cubic-bezier(0.32, 0.72, 0, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

html.reveal-enabled [data-reveal="hero"] {
  transform: translate3d(0, 24px, 0);
}

html.reveal-enabled [data-reveal="card"] {
  transform: translate3d(0, 26px, 0) scale(0.992);
}

html.reveal-enabled [data-reveal].is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

/* Legal / copyright bar: never hide via reveal */
html.reveal-enabled .footer-bar,
html.reveal-enabled .footer-bar[data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

@media (max-width: 767px) {
  html.reveal-enabled [data-reveal] {
    transform: translate3d(0, 22px, 0);
    transition-duration: 640ms, 720ms;
  }

  html.reveal-enabled [data-reveal="card"] {
    transform: translate3d(0, 18px, 0) scale(0.995);
  }
}

@media (prefers-reduced-motion: reduce) {
  html.reveal-enabled [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* —— Impeccable visual weight pass (homepage) —— */
.site-header {
  background: rgb(255 255 255 / 94%);
  border-bottom: 0;
  box-shadow: 0 1px 0 rgb(12 17 23 / 7%);
}

body {
  background: var(--bg);
}

:is(
  .process-card,
  .oem-cards li,
  .about-lifecycle-grid li,
  .logistics-grid article,
  .product-card,
  .stock-card,
  .faq-item,
  .feature-card,
  .home-channel-card,
  .home-proof-card,
  .why-card,
  .channel-card,
  .proof-card
) {
  border: 0 !important;
  box-shadow: none !important;
}

.process,
.oem,
.products,
.about-lifecycle {
  background: transparent;
}

.process-card,
.oem-cards li,
.about-lifecycle-grid li,
.product-card,
.faq-item {
  background: var(--surface);
}

.process-card:hover,
.oem-cards li:hover,
.product-card:hover {
  border-color: transparent !important;
  background: var(--surface);
}

.process-icon,
.oem-icon {
  border: 0 !important;
  box-shadow: none !important;
  background: var(--surface-low);
}

:is(
  .section-head h2,
  .process-head h2,
  .paths-head h2,
  .oem-head h2,
  .logistics-head h2,
  .products-head h2,
  .faq-title
) {
  font-weight: 700;
  letter-spacing: -0.035em;
}

.section,
.paths,
.process,
.oem,
.logistics,
.products,
.about-lifecycle,
.faq,
.about-split {
  border-top: 0 !important;
  border-bottom: 0 !important;
}

.faq-acc {
  border: 0;
}

.faq-item {
  border-bottom: 1px solid var(--line) !important;
  border-radius: 0;
  background: transparent;
  padding-inline: 0;
}

.faq-item + .faq-item {
  margin-top: 0;
}

.product-card,
.stock-card,
.feature-card {
  background: var(--surface);
  overflow: hidden;
}

.products-grid,
.process-rail,
.oem-cards,
.about-lifecycle-grid {
  gap: 20px;
}

.btn {
  font-weight: 700;
}

.btn-dark {
  background: var(--primary);
  border-color: var(--primary);
}

.btn-ghost {
  border-color: rgb(12 17 23 / 18%);
}

.btn-ghost:hover {
  background: var(--surface);
  border-color: rgb(12 17 23 / 32%);
}

/* Soften remaining homepage hairlines into surface shifts */
.home-strip,
.trust-strip,
.channel-row,
.proof-row {
  border: 0 !important;
}

.hero-overlay {
  background: rgb(12 17 23 / 52%);
}

/* —— Editorial continuity (homepage): one white canvas —— */
:is(
  .paths,
  .process,
  .oem,
  .logistics,
  .products,
  .about-lifecycle,
  .faq,
  .about-split,
  .section
) {
  background: transparent !important;
}

:is(
  .process-card,
  .oem-cards li,
  .about-lifecycle-grid li,
  .product-card,
  .stock-card,
  .feature-card
) {
  background: transparent !important;
}

:is(
  .process-media,
  .product-pic,
  .path-card
) {
  background: var(--surface-low);
}

.logistics-grid article,
.logistics-grid article.is-featured {
  background: #0b1219;
}

.process-body,
.oem-cards li,
.product-card {
  padding-inline: 0;
}

.process-card,
.oem-cards li {
  padding: 0;
}

.oem-cards li {
  padding-block: 8px;
}

.process-rail,
.oem-cards,
.products-grid,
.about-lifecycle-grid {
  gap: clamp(28px, 4vw, 40px);
}

.section,
.process,
.oem,
.products,
.logistics,
.about-lifecycle,
.faq {
  padding-block: var(--section-gap);
}

/* —— Typography readability lock (Impeccable) —— */
.nav-panel a {
  font-size: 14px;
  font-weight: 550;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.35;
}
.nav-panel-label,
.drawer-group-title,
.drawer-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
}
.drawer a {
  font-size: 1.05rem;
  font-weight: 550;
  line-height: 1.4;
}
.drawer-group a {
  font-size: 0.98rem;
}
.footer-col a,
.footer-info-list li,
.footer-info-list a,
.footer-location p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}
.footer-mail input {
  font-size: 15px;
}
.footer-mail button {
  font-size: var(--text-xs);
  font-weight: 700;
}
.footer-copy-line,
.footer-legal a,
.footer-bar-links a,
.footer-bar-copy-text p,
.footer-bar-copy > button[data-cookie-prefs] {
  font-size: 13px;
}
.lang-option,
.drawer-lang-option {
  font-size: 14px;
  font-weight: 550;
}
.hero-lead,
.about-split-head p,
.path-card-body p,
.oem-intro p,
.consult-copy p,
.faq-item p {
  font-size: var(--text-sm);
  font-weight: 500;
  line-height: var(--lh-body);
}
.hero-inner h1,
.section h2,
.paths-head h2,
.products-head h2 {
  font-weight: 700;
}
:is(
  .stitch-ddp-eyebrow,
  .stitch-map-eyebrow,
  .stitch-products-hero-kicker,
  .stitch-about-hero-kicker,
  .stitch-oem-hero-kicker,
  .stitch-qc-hero-kicker,
  .stitch-contact-hero-kicker,
  .stitch-res-hero-kicker,
  .stitch-res-kicker
) {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

/* —— Intent popup: sample vs wholesale path (ReachSky-adapted) —— */
.intent-popup {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
}
.intent-popup.is-open {
  opacity: 1;
  visibility: visible;
}
.intent-popup[hidden] {
  display: none !important;
}
.intent-popup.is-open[hidden] {
  display: grid !important;
}
.intent-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgb(11 18 25 / 52%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.intent-popup-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 52rem);
  height: fit-content;
  max-height: calc(100vh - 20px);
  max-height: calc(100dvh - 20px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(1rem, 2.2vw, 1.55rem) clamp(1rem, 2.4vw, 1.65rem) clamp(0.9rem, 2vw, 1.25rem);
  border-radius: var(--radius, 4px);
  background:
    linear-gradient(180deg, rgb(143 95 66 / 8%) 0%, rgb(255 255 255 / 0) 42%),
    var(--surface, #fff);
  border: 1px solid rgb(17 26 36 / 10%);
  box-shadow: 0 28px 80px rgb(11 18 25 / 22%);
  color: var(--ink, #0c1117);
  transform: translateY(0.75rem) scale(0.985);
  transition: transform 0.4s ease;
  scrollbar-width: thin;
  display: flex;
  flex-direction: column;
}
.intent-popup.is-open .intent-popup-dialog {
  transform: none;
}
.intent-popup-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border: 0;
  border-radius: var(--radius, 4px);
  background: transparent;
  color: var(--ink, #0c1117);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.intent-popup-close:hover {
  background: rgb(15 23 42 / 6%);
  color: var(--brand-bronze, #8f5f42);
}
.intent-popup-head {
  max-width: 40rem;
  margin: 0 auto 0.85rem;
  padding-right: 1.4rem;
  text-align: center;
  flex: 0 0 auto;
}
.intent-popup-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-bronze, #8f5f42);
}
.intent-popup-head h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink, #0c1117);
}
.intent-popup-lead {
  margin: 0;
  color: var(--muted, #5c6770);
  font-size: 0.88rem;
  line-height: 1.45;
}
.intent-popup-paths {
  display: grid;
  gap: 0.85rem;
  align-items: stretch;
  flex: 1 1 auto;
  min-height: 0;
}
@media (min-width: 800px) {
  .intent-popup-paths {
    grid-template-columns: 1fr 1fr;
    gap: 0.95rem;
  }
}
.intent-path {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.55rem;
  height: 100%;
  min-height: 0;
  padding: 0.95rem 0.95rem 1rem;
  border: 1px solid rgb(17 26 36 / 12%);
  border-radius: var(--radius, 4px);
  background: #fff;
}
.intent-path-label {
  margin: 0;
  align-self: start;
  padding: 0.22rem 0.55rem;
  border: 1px solid rgb(17 26 36 / 16%);
  border-radius: var(--radius, 4px);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted, #5c6770);
}
.intent-path h3 {
  margin: 0;
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.28;
  color: var(--ink, #0c1117);
}
.intent-path > p {
  margin: 0;
  color: var(--muted, #5c6770);
  font-size: 0.86rem;
  line-height: 1.45;
}
.intent-path ul {
  margin: 0;
  padding: 0 0 0 1.05rem;
  list-style: disc;
  color: var(--ink, #0c1117);
  font-size: 0.82rem;
  line-height: 1.4;
  flex: 1 1 auto;
}
.intent-path li + li {
  margin-top: 0.18rem;
}
.intent-path-cta {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  min-height: 44px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  font-weight: 600;
}
.intent-popup-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgb(17 26 36 / 10%);
  flex: 0 0 auto;
}
.intent-popup-foot p {
  margin: 0;
  color: var(--muted, #5c6770);
  font-size: 0.78rem;
}
.intent-popup-foot a {
  color: var(--brand-bronze, #8f5f42);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.intent-popup-foot a:hover {
  color: var(--primary, #0b1219);
}
body.intent-open {
  overflow: hidden;
}
@media (max-width: 799px) {
  .intent-path {
    height: auto;
  }
  .intent-path-cta {
    margin-top: 0.65rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .intent-popup,
  .intent-popup-dialog {
    transition: none;
  }
  .intent-popup-dialog {
    transform: none;
  }
}

/* —— Cookie consent corner panel —— */
.gbt-cc-root[hidden] {
  display: none !important;
}
.gbt-cc-backdrop {
  position: fixed;
  inset: auto 1rem 1rem auto;
  z-index: 99999;
  display: block;
  padding: 0;
  width: min(340px, calc(100vw - 2rem));
  max-width: 340px;
  background: transparent;
  pointer-events: none;
}
.gbt-cc-dialog {
  pointer-events: auto;
  width: 100%;
  max-height: min(70vh, 420px);
  overflow: auto;
  background: #fff;
  color: #1a1a1a;
  border-radius: var(--radius, 4px);
  border: 1px solid rgb(0 0 0 / 8%);
  box-shadow: 0 8px 28px rgb(0 0 0 / 16%);
  display: flex;
  flex-direction: column;
  font-family: inherit;
}
.gbt-cc-header {
  padding: 0.85rem 0.95rem 0.55rem;
}
.gbt-cc-title {
  margin: 0 0 0.4rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #111;
}
.gbt-cc-text {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #4a4a4a;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gbt-cc-layer[data-gbt-cc-layer="settings"] .gbt-cc-text {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}
.gbt-cc-text a {
  color: var(--brand-bronze, #8f5f42);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.gbt-cc-text a:hover,
.gbt-cc-text a:focus-visible {
  color: var(--primary, #0b1219);
}
.gbt-cc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  margin-top: 0.55rem;
  padding: 0;
}
.gbt-cc-links a {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.gbt-cc-links a:hover,
.gbt-cc-links a:focus-visible {
  color: var(--brand-bronze, #8f5f42);
}
.gbt-cc-footer {
  margin-top: auto;
  padding: 0.55rem 0.95rem 0.85rem;
  border-top: 1px solid #eee;
}
.gbt-cc-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: stretch;
}
.gbt-cc-btn {
  flex: 1 1 auto;
  min-height: 32px;
  padding: 0.35rem 0.5rem;
  border: 1px solid #1a1a1a;
  border-radius: var(--radius, 4px);
  background: #fff;
  color: #1a1a1a;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.gbt-cc-btn:hover,
.gbt-cc-btn:focus-visible {
  background: #f5f5f5;
  outline: none;
}
.gbt-cc-btn--deny {
  border-color: #ccc;
  color: #555;
}
.gbt-cc-btn--accept {
  background: var(--primary, #0b1219);
  border-color: var(--primary, #0b1219);
  color: #fff;
}
.gbt-cc-btn--accept:hover,
.gbt-cc-btn--accept:focus-visible {
  background: var(--brand-bronze, #8f5f42);
  border-color: var(--brand-bronze, #8f5f42);
  color: #fff;
}
.gbt-cc-layer {
  display: none;
}
.gbt-cc-layer.is-active {
  display: block;
}
.gbt-cc-cats {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.gbt-cc-cat {
  border: 1px solid #e8e8e8;
  border-radius: var(--radius, 4px);
  padding: 0.55rem 0.65rem;
}
.gbt-cc-cat__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.65rem;
}
.gbt-cc-cat__title {
  margin: 0 0 0.2rem;
  font-size: 0.8125rem;
  font-weight: 700;
}
.gbt-cc-cat__desc {
  margin: 0;
  font-size: 0.6875rem;
  line-height: 1.45;
  color: #666;
}
.gbt-cc-switch {
  position: relative;
  flex-shrink: 0;
  width: 36px;
  height: 20px;
}
.gbt-cc-switch input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
  z-index: 1;
}
.gbt-cc-switch input:disabled {
  cursor: not-allowed;
}
.gbt-cc-switch__ui {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: #ccc;
  transition: background 0.15s ease;
}
.gbt-cc-switch__ui::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px rgb(0 0 0 / 25%);
  transition: transform 0.15s ease;
}
.gbt-cc-switch input:checked + .gbt-cc-switch__ui {
  background: var(--brand-bronze, #8f5f42);
}
.gbt-cc-switch input:checked + .gbt-cc-switch__ui::after {
  transform: translateX(16px);
}
.gbt-cc-switch input:disabled + .gbt-cc-switch__ui {
  background: #999;
}
.gbt-cc-switch input:focus-visible + .gbt-cc-switch__ui {
  outline: 2px solid var(--brand-bronze, #8f5f42);
  outline-offset: 2px;
}
body.gbt-cc-open {
  overflow: auto;
}
@media (max-width: 520px) {
  .gbt-cc-backdrop {
    inset: auto 0.75rem 0.75rem 0.75rem;
    width: auto;
    max-width: none;
  }
  .gbt-cc-buttons {
    flex-direction: column;
  }
  .gbt-cc-btn {
    width: 100%;
  }
}
