/* ===========================================================================
   SAAO — extra.css
   Premium heavy-industry B2B. Editorial, cinematic, confident.
   All existing class-name hooks preserved; rules refined for maximum impact.
   =========================================================================== */

/* ---------- Global polish -------------------------------------------------- */
html { scroll-behavior: smooth; }
body {
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.005em;
}
h1, h2, h3, .h-display, .h-section {
  letter-spacing: -0.015em;
}
::selection { background: var(--accent); color: var(--bg); }
::-moz-selection { background: var(--accent); color: var(--bg); }

/* Dark, thin custom scrollbar (webkit + firefox) */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2a2a2a, #1a1a1a);
  border-radius: 999px;
  border: 2px solid #050505;
}
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
html { scrollbar-width: thin; scrollbar-color: #2a2a2a #050505; }

/* Utility */
.text-accent { color: var(--accent); }

/* ---------- Buttons (canonical) ------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.25s var(--ease-out),
              background 0.25s ease,
              color 0.25s ease,
              border-color 0.25s ease,
              box-shadow 0.35s ease;
  will-change: transform;
}
.btn:active { transform: translateY(1px) scale(0.98); }

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 48px -8px rgba(255,204,0,0.5),
              0 2px 0 rgba(0,0,0,0.15) inset;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--fg);
  color: var(--fg);
}
.btn-ghost:hover {
  background: var(--fg);
  color: var(--bg);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--fg);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ---------- Header (simple class names) ----------------------------------- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  flex-shrink: 0;
  text-decoration: none;
}
.brand img { height: 36px; width: auto; display: block; }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
}
.site-nav a {
  position: relative;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--fg);
  padding: 8px 0;
  text-decoration: none;
  transition: color 0.25s ease;
}
.site-nav a::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.site-nav a:hover { color: var(--accent); }
.site-nav a:hover::after { transform: scaleX(1); }

@media (max-width: 780px) {
  .site-nav { display: none; }
}

.header-right { display: flex; align-items: center; gap: 12px; }

/* Language switcher */
.lang-switcher { position: relative; }
.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--fg);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.lang-trigger:hover {
  border-color: var(--accent);
  background: var(--surface);
  color: var(--accent);
}
.lang-trigger svg { opacity: 0.7; transition: transform 0.25s; }
.lang-switcher.is-open .lang-trigger svg { transform: rotate(180deg); }
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  z-index: 200;
}
.lang-menu li { list-style: none; }
.lang-menu button {
  width: 100%;
  padding: 10px 14px;
  background: transparent;
  border: 0;
  color: var(--fg);
  font-size: 13px;
  text-align: left;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lang-menu button:hover { background: var(--surface-2); color: var(--accent); }
.lang-menu button.is-active { color: var(--accent); }

/* Cart button */
.cart-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: var(--accent);
  color: var(--bg);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1),
              box-shadow 0.3s ease;
}
.cart-button:hover {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 12px 40px rgba(255,204,0,0.45);
}
.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent);
}
.cart-count.is-empty { opacity: 0.5; }

/* ---------- Hero (cinematic) ---------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: contrast(1.05) saturate(0.9);
  transform: scale(1.02);
}
/* Strong cinematic vignette */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.85) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 30%, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0.7) 100%);
}
/* Subtle scanline/grain texture */
.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,0.15) 0px,
    rgba(255,255,255,0.15) 1px,
    transparent 1px,
    transparent 3px
  );
}

/* Corner bracket frame (4 accent corners) */
.hero::before,
.hero::after,
.hero-content::before,
.hero-content::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border: 0 solid var(--accent);
  z-index: 3;
  pointer-events: none;
  opacity: 0.9;
}
.hero::before {
  top: clamp(24px, 5vh, 56px);
  left: clamp(24px, 5vw, 56px);
  border-top-width: 1.5px;
  border-left-width: 1.5px;
}
.hero::after {
  top: clamp(24px, 5vh, 56px);
  right: clamp(24px, 5vw, 56px);
  border-top-width: 1.5px;
  border-right-width: 1.5px;
}
.hero-content::before {
  bottom: clamp(24px, 5vh, 56px);
  left: clamp(24px, 5vw, 56px);
  border-bottom-width: 1.5px;
  border-left-width: 1.5px;
  position: fixed;
}
.hero-content::after {
  bottom: clamp(24px, 5vh, 56px);
  right: clamp(24px, 5vw, 56px);
  border-bottom-width: 1.5px;
  border-right-width: 1.5px;
  position: fixed;
}
/* Re-scope the lower corners to the hero so they don't stick during scroll */
.hero-content::before,
.hero-content::after { position: absolute; }

/* Vertical marginalia — "HEAVY INDUSTRY" */
.hero .hero-content > :first-child::before {
  /* noop placeholder; real vertical text below */
}
.hero::before { /* keep as corner */ }

/* Inject vertical label via hero content pseudo */
.hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: min(1200px, 92vw);
  margin: 0 auto;
  text-align: center;
  padding: 0 16px;
}
.hero .hero-content {
  background-image: none;
}

/* Vertical text rail on the left edge */
.hero {
  /* use an extra layered ::marker via a generated element */
}
.hero > .hero-content::before,
.hero > .hero-content::after {
  /* already corners */
}

/* A dedicated vertical label using the video's sibling ::before won't stack
   with existing corners, so we use the hero-overlay::before for the label. */
.hero-overlay::before {
  content: "HEAVY INDUSTRY / SINCE 2002";
  position: absolute;
  left: clamp(12px, 2.5vw, 32px);
  top: 50%;
  transform-origin: left center;
  transform: rotate(-90deg) translateX(-50%);
  font-family: var(--font-mono, var(--font-body));
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.85;
  white-space: nowrap;
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 780px) {
  .hero-overlay::before { display: none; }
}

/* Hero title — cinematic, huge */
.hero-content .eyebrow {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.4em;
  margin-bottom: 24px;
  opacity: 0.95;
}
.hero-content .h-display {
  margin: 0 0 22px;
  font-size: clamp(2.75rem, 5vw + 1rem, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-wrap: balance;
  text-shadow: 0 4px 40px rgba(0,0,0,0.45);
}
.hero-content .accent {
  display: block;
  color: var(--accent);
  font-style: italic;
}
.hero-subtitle {
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.1rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  letter-spacing: 0.005em;
  position: relative;
  padding-top: 22px;
}
/* Accent divider above subtitle — thin vertical stack feel */
.hero-subtitle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 18px;
  background: var(--accent);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  animation: floatY 2.2s ease-in-out infinite;
  z-index: 3;
}
.scroll-indicator svg { opacity: 0.7; }

/* ---------- Page hero (subpages) ------------------------------------------ */
.page-hero {
  position: relative;
  padding: clamp(140px, 22vh, 260px) 0 clamp(60px, 10vh, 120px);
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,204,0,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,204,0,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-sm { padding-top: clamp(110px, 14vh, 180px); padding-bottom: clamp(40px, 6vh, 80px); }
.page-hero .h-display { margin-bottom: 24px; letter-spacing: -0.035em; }
.page-hero .body-lg { max-width: 720px; }

.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.page-hero .eyebrow::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ---------- Typography helpers -------------------------------------------- */
.h-display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-display);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0;
}
.h-section {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 1.2rem + 2vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  text-wrap: balance;
}
.body-lg {
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.2rem);
  line-height: 1.7;
  color: rgba(245,245,245,0.82);
  margin: 0 0 24px;
  max-width: 680px;
}
.muted { color: var(--fg-muted); }
.accent { color: var(--accent); }

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(28px, 3.5vh, 44px);
  text-align: center;
}
.section-head .eyebrow { margin-bottom: 14px; }
.section-head .h-section { margin-bottom: 0; }
.section-head .body-lg {
  margin: 16px auto 0;
  max-width: 640px;
}

/* ---------- Section spacing / rhythm -------------------------------------- */
.section {
  padding: var(--space-section) 0;
  position: relative;
}
.section--dense { padding: var(--space-subsection) 0; }

/* ---------- Stats --------------------------------------------------------- */
.stats {
  padding: var(--space-section-sm) 0;
  border-block: 1px solid var(--border);
  position: relative;
  background:
    linear-gradient(180deg, transparent, rgba(255,204,0,0.015), transparent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 32px 0; }
  .stats-grid .stat + .stat { border-left: 1px solid var(--border); }
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  padding: 8px 20px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw + 1rem, 6rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-shadow: 0 0 60px rgba(255,204,0,0.15);
}
.stat-label {
  font-family: var(--font-mono, "JetBrains Mono", ui-monospace, monospace);
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
}

/* ---------- Marquee section ----------------------------------------------- */
.marquee-section {
  padding: 28px 0;
  border-block: 1px solid var(--border);
  background: var(--bg);
  overflow: hidden;
  position: relative;
}
.marquee-section .marquee,
.marquee {
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-track,
.marquee__track {
  display: inline-flex;
  gap: clamp(32px, 5vw, 80px);
  white-space: nowrap;
  animation: marqueeScroll 40s linear infinite;
  will-change: transform;
  padding-right: clamp(32px, 5vw, 80px);
}
.marquee:hover .marquee-track,
.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee-track > *,
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.marquee-track > *:hover { color: var(--accent); }

.marquee-track > *::after,
.marquee__item::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(255,204,0,0.5);
}

/* ---------- Featured / Product grid --------------------------------------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(24px, 3vw, 48px);
}

.product-card {
  position: relative;
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.5s var(--ease-out),
              border-color 0.35s ease,
              box-shadow 0.4s ease;
  transform-style: preserve-3d;
  isolation: isolate;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
  z-index: 2;
}
.product-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-8px);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,204,0,0.08);
}
.product-card:hover::before { transform: scaleX(1); }

.product-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f5f5f3;
  position: relative;
}
.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8%;
  transition: transform 0.6s ease;
  background: transparent;
}
.product-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 75%, rgba(0,0,0,0.06) 100%);
  pointer-events: none;
  z-index: 1;
}
.product-card:hover .product-card-media img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.03);
}

.product-card-body {
  padding: 22px 22px 26px;
  position: relative;
}

/* Category chip floats over the image top-left */
.product-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 700;
  color: var(--bg);
  background: rgba(255,204,0,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-radius: 999px;
  margin: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
/* Fallback for when .product-cat lives inside body */
.product-card-body .product-cat {
  position: static;
  padding: 0;
  margin: 0 0 10px;
  background: transparent;
  color: var(--accent);
  box-shadow: none;
  backdrop-filter: none;
  font-size: 11px;
  letter-spacing: 0.18em;
}

.product-name {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.3vw + 0.8rem, 1.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  transition: color 0.3s ease;
}
.product-card:hover .product-name { color: var(--accent); }

.product-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin: 0 0 18px;
  line-height: 1.55;
}

.product-specs-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: -6px 0 16px;
  padding: 0;
  list-style: none;
  font-size: 11px;
  color: var(--fg-muted);
  font-family: var(--font-mono, ui-monospace, monospace);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.product-specs-mini li {
  position: relative;
  padding-left: 14px;
}
.product-specs-mini li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(255,204,0,0.55);
}

.product-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }

/* ---------- Filter chips (catalogue) -------------------------------------- */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.chip {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--fg-muted);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease,
              border-color 0.2s ease,
              color 0.2s ease;
  white-space: nowrap;
}
.chip:hover {
  border-color: var(--border-strong, #3a3a3a);
  color: var(--fg);
  background: var(--surface-2);
}
.chip.is-active {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  font-weight: 600;
}

.catalogue-empty {
  padding: 100px 20px;
  text-align: center;
  color: var(--fg-muted);
}

/* ---------- Catalogue pagination ------------------------------------------ */
.catalogue-pager {
  display: flex;
  justify-content: center;
  margin: 0;
}
.catalogue-pager--top { margin: 8px 0 24px; }
.catalogue-pager--bottom { margin: 36px 0 0; }
.catalogue-pager:empty { display: none; }

.pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination__arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--fg);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.pagination__arrow:hover:not([disabled]) {
  background: var(--surface-2);
  border-color: var(--border);
}
.pagination__arrow[disabled] { opacity: 0.35; cursor: not-allowed; }
.pagination__arrow svg { width: 14px; height: 14px; }

.pagination__pages {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.pagination__page {
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--fg-muted);
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.pagination__page:hover { color: var(--fg); background: var(--surface-2); }
.pagination__page.is-active {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.pagination__gap {
  padding: 0 4px;
  color: var(--fg-muted);
  font-size: 13px;
}
.pagination__info {
  margin-left: 8px;
  padding-left: 12px;
  border-left: 1px solid var(--border);
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 560px) {
  .pagination__arrow span { display: none; }
  .pagination__info { display: none; }
}

/* ---------- CTA band ------------------------------------------------------ */
.cta-band {
  position: relative;
  padding: var(--space-section) 0;
  overflow: hidden;
  border-block: 1px solid var(--border);
  background-color: var(--bg);
  background-image:
    repeating-linear-gradient(45deg,
      transparent,
      transparent 40px,
      rgba(255,204,0,0.04) 40px,
      rgba(255,204,0,0.04) 41px);
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,204,0,0.06) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.cta-band-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  text-align: center;
  margin: 0 auto;
}
.cta-band-inner .h-section {
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}
.cta-band-inner p {
  margin: 0 auto 36px;
  max-width: 620px;
  color: rgba(245,245,245,0.8);
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.2rem);
  line-height: 1.7;
}

/* ---------- About teaser -------------------------------------------------- */
.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .about-teaser-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(48px, 6vw, 96px);
  }
}

.about-teaser-grid > div:first-child,
.about-teaser-grid > .about-teaser-copy { position: relative; }
.about-teaser-grid > div:first-child::before,
.about-teaser-grid > .about-teaser-copy::before {
  content: "01 / WHY SAAO";
  display: inline-block;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--accent);
  margin-bottom: 20px;
  padding-left: 22px;
  position: relative;
}
.about-teaser-grid > div:first-child::after,
.about-teaser-grid > .about-teaser-copy::after {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 2px;
  background: var(--accent);
}

.about-teaser-img {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl, 28px);
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-radius 0.6s cubic-bezier(.22,1,.36,1), transform 0.6s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.9);
}
@media (min-width: 900px) {
  .about-teaser-img {
    aspect-ratio: 4 / 3;
    min-height: 420px;
  }
}
.about-teaser-img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(5,5,5,0) 45%, rgba(5,5,5,0.55) 100%),
    linear-gradient(135deg, rgba(5,5,5,0.25) 0%, transparent 40%);
  pointer-events: none;
}
.about-teaser-img::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(135deg, transparent 0%, rgba(255,204,0,0.1) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.about-teaser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1.2s cubic-bezier(.22,1,.36,1), filter 0.6s ease;
  will-change: transform;
  z-index: 1;
  position: relative;
}
.about-teaser-img:hover { border-radius: 12px; }
.about-teaser-img:hover::after { opacity: 1; }
.about-teaser-img:hover img {
  transform: scale(1.04);
  filter: saturate(1.1) contrast(1.04);
}

.about-teaser-chip {
  position: absolute;
  bottom: clamp(16px, 2.5vw, 24px);
  left: clamp(16px, 2.5vw, 24px);
  z-index: 4;
  padding: 8px 14px;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(8,8,8,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,204,0,0.28);
  border-radius: 999px;
  line-height: 1;
}

/* ---------- Two col (about) ----------------------------------------------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 780px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: clamp(48px, 7vw, 96px); }
}

/* ---------- Values grid --------------------------------------------------- */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 780px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card {
  position: relative;
  padding: 44px 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.35s, transform 0.5s var(--ease-out), background 0.35s;
  isolation: isolate;
}
.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,204,0,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.value-card > * { position: relative; z-index: 1; }
.value-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
}
.value-card:hover::before { opacity: 1; }
.value-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.value-card h3 { margin: 0 0 12px; font-size: 22px; letter-spacing: -0.015em; }
.value-card p { margin: 0; color: var(--fg-muted); line-height: 1.7; }

.cert-band {
  padding: 56px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cert-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg,
    transparent, transparent 30px,
    rgba(255,204,0,0.025) 30px, rgba(255,204,0,0.025) 31px);
  pointer-events: none;
}
.cert-band .body-lg { margin: 0 auto; position: relative; }

/* ---------- Contact grid -------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 780px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.channel-card {
  display: flex;
  flex-direction: column;
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.35s, transform 0.5s var(--ease-out), box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}
.channel-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.channel-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--bg);
  border-radius: 14px;
  margin-bottom: 22px;
  transition: transform 0.4s var(--ease-back);
}
.channel-card:hover .channel-icon { transform: rotate(-8deg) scale(1.05); }
.channel-card h3 { margin: 0 0 10px; font-size: 20px; letter-spacing: -0.015em; }
.channel-card p { margin: 0 0 18px; color: var(--fg-muted); font-size: 14px; flex: 1; line-height: 1.6; }
.channel-cta {
  font-weight: 700;
  color: var(--accent);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-form-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.contact-form-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,204,0,0.04), transparent 60%);
  pointer-events: none;
}
.contact-form-wrap > * { position: relative; }
.form-success {
  margin-top: 16px;
  padding: 18px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid #10b981;
  color: #10b981;
  border-radius: 10px;
}

.address-band { text-align: center; padding: 48px 0; }
.address {
  font-family: var(--font-mono);
  color: var(--fg-muted);
  margin: 0;
  white-space: pre-line;
  letter-spacing: 0.05em;
  line-height: 1.9;
}

/* ---------- Form fields --------------------------------------------------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field-full { grid-column: 1 / -1; }
.form-field > span {
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 15px 18px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--fg);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.3s;
}
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover { border-color: var(--border-strong); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #111;
  box-shadow: 0 0 0 4px rgba(255,204,0,0.1);
}
.form-field textarea { resize: vertical; min-height: 120px; }

/* ---------- Incoterm radio group ------------------------------------------ */
.incoterm-group {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  border: 0;
  margin: 0;
  padding: 0;
}
@media (min-width: 780px) { .incoterm-group { grid-template-columns: repeat(3, 1fr); } }
.incoterm-group legend {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}
.incoterm-group legend strong { color: var(--fg); font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em; }
.incoterm-group legend small { color: var(--fg-muted); font-size: 13px; }
.radio-card {
  position: relative;
  display: block;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.25s var(--ease-out), background 0.25s;
}
.radio-card:hover { border-color: var(--border-strong); background: var(--surface-2); }
.radio-card input { position: absolute; opacity: 0; }
.radio-card-body strong { display: block; font-size: 18px; margin-bottom: 6px; letter-spacing: -0.01em; }
.radio-card-body p { margin: 0; color: var(--fg-muted); font-size: 13px; line-height: 1.55; }
.radio-card.is-active,
.radio-card:has(input:checked) {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 12px 36px rgba(255,204,0,0.18);
  transform: translateY(-3px);
  background: var(--surface);
}

/* ---------- Quote stepper / flow ------------------------------------------ */
.quote-wrap { max-width: 980px; margin: 0 auto; }
.stepper {
  display: flex;
  gap: 10px;
  margin: 0 0 56px;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}
.stepper .step {
  flex: 1 1 120px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  opacity: 0.5;
  transition: opacity 0.4s, border-color 0.4s, background 0.4s;
}
.stepper .step.is-active {
  opacity: 1;
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--surface), rgba(255,204,0,0.05));
}
.stepper .step.is-done { opacity: 0.85; border-color: rgba(255,204,0,0.3); }
.step-num {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.step-label { font-size: 13px; font-weight: 600; letter-spacing: 0.02em; }

.quote-step { display: none; }
.quote-step.is-active { display: block; animation: fadeUp 400ms var(--ease-out) both; }
.quote-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* ---------- Cart (drawer + rows) ------------------------------------------ */
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 92vw);
  height: 100vh;
  background: var(--surface);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
  z-index: 300;
  box-shadow: -20px 0 60px rgba(0,0,0,0.4);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer-head {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-drawer-head h3 { margin: 0; letter-spacing: -0.015em; }
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-drawer-foot {
  padding: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--surface-2);
}
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  z-index: 290;
  transition: opacity 0.35s;
}
.drawer-backdrop.is-visible { opacity: 1; pointer-events: auto; }

.cart-line, .cart-row {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s;
}
.cart-line:hover, .cart-row:hover { border-color: var(--border-strong); }
.cart-line img, .cart-row img {
  width: 72px; height: 72px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.cart-line-body, .cart-row > div:last-child { flex: 1; }
.cart-line-body strong, .cart-row strong { display: block; margin-bottom: 8px; font-size: 14px; }
.cart-table { display: flex; flex-direction: column; gap: 12px; }
.cart-empty { text-align: center; padding: 48px 20px; color: var(--fg-muted); }
.cart-empty p { margin: 0 0 20px; }

.qty-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

.icon-btn {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.icon-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(255,204,0,0.05); }

.link-btn {
  background: transparent;
  border: 0;
  color: var(--fg-muted);
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  transition: color 0.2s;
}
.link-btn:hover { color: var(--accent); }

/* ---------- Review summary ------------------------------------------------ */
.review-section {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  transition: border-color 0.3s;
}
.review-section:hover { border-color: var(--border-strong); }
.review-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.review-list { margin: 0; padding: 0; list-style: none; }
.review-list li { padding: 8px 0; font-size: 14px; }
.review-list li + li { border-top: 1px solid var(--border); padding-top: 12px; margin-top: 6px; }

.success-card {
  max-width: 560px;
  margin: 48px auto;
  padding: 56px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(255,204,0,0.15);
}
.success-card svg { color: var(--accent); margin-bottom: 20px; }
.quote-success { display: none; }
.quote-success.is-active { display: block; animation: fadeUp 500ms var(--ease-out) both; }

/* ---------- Specs dl ------------------------------------------------------ */
.specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 20px 0 28px;
  border: 1px solid var(--border);
}
.specs-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: var(--surface);
  transition: background 0.2s;
}
.specs-row:hover { background: var(--surface-2); }
.specs-row dt { color: var(--fg-muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }
.specs-row dd { margin: 0; font-weight: 600; font-family: var(--font-mono); color: var(--fg); }

/* ==========================================================================
   Product detail modal — premium B2B layout
   ========================================================================== */
#modal-mount { pointer-events: none; }
#modal-mount.is-open { pointer-events: auto; }

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 400;
}
#modal-mount.is-open .modal-backdrop { opacity: 1; }

.product-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) scale(0.96);
  width: min(1120px, 92vw);
  height: min(760px, 90vh);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  opacity: 0;
  z-index: 410;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 40px 140px rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
#modal-mount.is-open .product-modal {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 20;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.3s, color 0.2s;
}
.modal-close:hover {
  background: var(--accent);
  color: var(--bg);
  transform: rotate(90deg);
  border-color: var(--accent);
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}
@media (min-width: 900px) {
  .modal-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
    grid-template-rows: 1fr;
  }
}

/* ---- Media column (product image) ---- */
.modal-media {
  position: relative;
  background: linear-gradient(135deg, #f5f5f3 0%, #e8e8e5 100%);
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  max-height: 42vh;
}
@media (min-width: 900px) {
  .modal-media { max-height: none; }
}
.modal-media__main {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: clamp(20px, 3vw, 40px);
  position: relative;
}
.modal-media__main::before {
  content: "";
  position: absolute;
  inset: 20px;
  background: radial-gradient(ellipse at center bottom, rgba(0,0,0,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.modal-media__main img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.modal-thumbs {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  overflow-x: auto;
  background: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(0,0,0,0.06);
  scrollbar-width: none;
  flex-shrink: 0;
}
.modal-thumbs::-webkit-scrollbar { display: none; }
.modal-thumb {
  width: 56px;
  height: 56px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
  transition: border-color 0.2s, transform 0.2s;
}
.modal-thumb:hover { transform: scale(1.05); }
.modal-thumb img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 4px;
  mix-blend-mode: multiply;
}
.modal-thumb.is-active { border-color: var(--accent); }

/* ---- Content column ---- */
.modal-body {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: var(--surface);
}
.modal-body__scroll {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: clamp(28px, 3.5vw, 44px) clamp(24px, 3.5vw, 44px) clamp(16px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.modal-body__scroll::-webkit-scrollbar { width: 6px; }
.modal-body__scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.modal-body__scroll::-webkit-scrollbar-track { background: transparent; }

.modal-body__cat {
  margin: 0;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.modal-body__title {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2vw + 0.6rem, 2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  padding-right: 52px;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}
.modal-body__tagline {
  margin: 2px 0 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--accent);
}
.modal-body__desc {
  margin: 6px 0 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(245,245,245,0.75);
}

.modal-section { margin-top: 8px; }
.modal-section__label {
  margin: 0 0 12px;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.modal-section__label::before {
  content: "";
  width: 20px;
  height: 1.5px;
  background: var(--accent);
}

.modal-applications {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.modal-applications li {
  padding: 5px 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--fg-muted);
  letter-spacing: 0.01em;
}

/* Specs table */
.specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface-2);
}
.specs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  background: transparent;
}
.specs-row:last-child { border-bottom: none; }
.specs-row:nth-child(even) { background: rgba(255,255,255,0.015); }
.specs-row dt {
  margin: 0;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  align-self: center;
}
.specs-row dd {
  margin: 0;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  text-align: right;
  align-self: center;
}

/* ---- Sticky footer with action buttons ---- */
.modal-footer {
  flex-shrink: 0;
  padding: 16px clamp(24px, 3.5vw, 44px);
  border-top: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}
.modal-footer .btn { flex: 0 1 auto; padding: 12px 20px; font-size: 14px; }
.modal-footer .btn svg { width: 15px; height: 15px; }
@media (max-width: 520px) {
  .modal-footer { flex-direction: column; padding: 14px 20px; }
  .modal-footer .btn { width: 100%; justify-content: center; }
}
#modal-add.is-added {
  background: #22c55e !important;
  border-color: #22c55e !important;
  color: #fff !important;
}

/* ---------- Gradient blob (dramatic pulse) -------------------------------- */
.gradient-blob {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,204,0,0.12), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(255,204,0,0.08), transparent 50%);
  filter: blur(60px);
  opacity: 1;
  pointer-events: none;
  z-index: 0;
  animation: blob 20s ease-in-out infinite alternate;
  will-change: transform;
  mix-blend-mode: screen;
}

/* ---------- Reveal polish ------------------------------------------------- */
/* CONTENT-FIRST: elements are always visible. No animation gating. */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }

/* ---------- Footer -------------------------------------------------------- */
.site-footer {
  padding: 80px 0 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: 0.3;
}
.site-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (min-width: 780px) { .site-footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-logo { height: 40px; margin-bottom: 20px; display: block; }
.footer-links { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: var(--fg-muted);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.25s, padding-left 0.3s var(--ease-out);
  position: relative;
}
.footer-links a:hover { color: var(--accent); padding-left: 8px; }
.footer-copy {
  padding-top: 36px;
  border-top: 1px solid var(--border);
  color: var(--fg-muted);
  font-size: 13px;
  letter-spacing: 0.02em;
}

/* ---------- Container ----------------------------------------------------- */
.container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}
.is-added { background: #10b981 !important; color: #fff !important; }

/* ---------- Utility ------------------------------------------------------- */
[hidden] { display: none !important; }

/* ===========================================================================
   NEW SECTIONS (showcase, commitments, image-wall)
   =========================================================================== */

/* ---------- Showcase: split-screen flagship ------------------------------- */
.showcase {
  position: relative;
  background: var(--bg);
  padding: var(--space-section) 0;
  overflow: hidden;
  border-block: 1px solid var(--border);
}
.showcase__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1440px;
  margin: 0 auto;
  align-items: stretch;
}
@media (min-width: 900px) {
  .showcase__grid { grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; padding: 0 clamp(24px, 4vw, 60px); }
}
.showcase__media {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  min-height: clamp(320px, 48vw, 520px);
  background:
    radial-gradient(120% 80% at 30% 20%, rgba(255,204,0,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at center, #161614 0%, #060606 72%);
  overflow: hidden;
  border-radius: clamp(4px, 1vw, 18px);
  border: 1px solid rgba(255,255,255,0.06);
  isolation: isolate;
  box-shadow:
    0 30px 60px -30px rgba(0,0,0,0.8),
    inset 0 1px 0 rgba(255,255,255,0.04);
}
.showcase__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(255,255,255,0.025) 39px 40px),
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(255,255,255,0.025) 39px 40px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
  mask-image: radial-gradient(ellipse at center, black 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 35%, transparent 75%);
}
.showcase__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 55%, rgba(0,0,0,0.45) 100%);
  z-index: 2;
  pointer-events: none;
}
.showcase__media img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: clamp(20px, 5%, 56px);
  z-index: 1;
  filter: drop-shadow(0 40px 50px rgba(0,0,0,0.55)) drop-shadow(0 0 1px rgba(0,0,0,0.6));
  transition: transform 0.8s cubic-bezier(.22,1,.36,1);
}
.showcase__media:hover img {
  transform: scale(1.03);
}

.showcase__badge {
  position: absolute;
  top: clamp(16px, 2.5vw, 28px);
  left: clamp(16px, 2.5vw, 28px);
  z-index: 3;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(8,8,8,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,204,0,0.25);
  border-radius: 999px;
}
.showcase__badge-num {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.showcase__badge-label {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.85);
  line-height: 1;
}
@media (min-width: 900px) {
  .showcase__body .showcase__num { display: none; }
}
@media (max-width: 899px) {
  .showcase__badge { display: none; }
}
.showcase__body {
  padding: clamp(32px, 5vw, 60px) clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.showcase__num {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.showcase__num::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: var(--accent);
}
.showcase__body .h-section {
  font-size: clamp(1.7rem, 1.5vw + 1rem, 2.6rem);
  margin: 0;
  line-height: 1.15;
  text-wrap: balance;
}
.showcase__body .body-lg {
  margin: 0;
  color: rgba(245,245,245,0.75);
  max-width: 520px;
}
.showcase__body .btn {
  align-self: flex-start;
  margin-top: 12px;
}

/* ---------- Commitments ---------------------------------------------------- */
.commitments { background: var(--bg); }
.commitments__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2.5vw, 32px);
  margin-top: 0;
}
@media (min-width: 780px) {
  .commitments__grid { grid-template-columns: repeat(3, 1fr); }
}
.commit {
  position: relative;
  padding: clamp(28px, 2.4vw, 40px);
  background: linear-gradient(180deg, var(--surface) 0%, #0e0e0e 100%);
  border: 1px solid var(--border);
  border-radius: clamp(12px, 1vw, 20px);
  transition: border-color 0.3s ease, transform 0.4s var(--ease-out, cubic-bezier(.22,1,.36,1));
  overflow: hidden;
}
.commit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.5s var(--ease-out, cubic-bezier(.22,1,.36,1));
}
.commit:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
}
.commit:hover::before { width: 100%; }
.commit__kicker {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.12em;
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.commit h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 0.8rem + 1.2vw, 1.8rem);
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.commit p {
  margin: 0;
  color: rgba(245,245,245,0.7);
  font-size: 15px;
  line-height: 1.65;
}

/* ---------- Image wall ---------------------------------------------------- */
.image-wall {
  background: var(--bg);
  padding: var(--space-section) 0;
  overflow: hidden;
}
.image-wall__head {
  padding: 0 clamp(20px, 4vw, 40px) clamp(24px, 4vh, 40px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 1280px;
  margin: 0 auto;
}
.image-wall__eyebrow {
  margin: 0;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.image-wall__eyebrow::before {
  content: "";
  width: 32px;
  height: 1.5px;
  background: var(--accent);
  display: inline-block;
}
.image-wall__head .h-section {
  margin: 0;
  max-width: 20ch;
  font-size: clamp(1.5rem, 1vw + 1rem, 2.2rem);
  line-height: 1.15;
  text-wrap: balance;
}
.image-wall__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
  padding: 0 clamp(20px, 4vw, 40px);
  max-width: 1440px;
  margin: 0 auto;
  background: transparent;
}
@media (min-width: 900px) {
  .image-wall__row { grid-template-columns: repeat(4, 1fr); }
}
.image-wall__tile {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background:
    linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: clamp(8px, 1vw, 14px);
  isolation: isolate;
  transition: border-color 0.4s cubic-bezier(.22,1,.36,1),
              transform 0.5s cubic-bezier(.22,1,.36,1);
}
@media (min-width: 900px) {
  .image-wall__tile { aspect-ratio: 4 / 5; }
}
.image-wall__tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(255,204,0,0.05) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}
.image-wall__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}
.image-wall__tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: clamp(16px, 8%, 44px);
  transition: transform 0.8s cubic-bezier(.22,1,.36,1), filter 0.6s ease;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}
.image-wall__tile:hover {
  border-color: rgba(255,204,0,0.25);
  transform: translateY(-4px);
}
.image-wall__tile:hover img {
  transform: scale(1.06);
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.6)) saturate(1.08);
}
.image-wall__caption {
  position: absolute;
  bottom: clamp(14px, 2vw, 20px);
  left: clamp(14px, 2vw, 20px);
  right: clamp(14px, 2vw, 20px);
  z-index: 3;
  margin: 0;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.9);
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 8px;
}
.image-wall__caption::before {
  content: "";
  width: 18px;
  height: 1.5px;
  background: var(--accent);
  display: inline-block;
  flex-shrink: 0;
  transition: width 0.4s cubic-bezier(.22,1,.36,1);
}
.image-wall__tile:hover .image-wall__caption::before { width: 32px; }

/* ---------- Language splash (first visit) -------------------------------- */
.lang-splash {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.lang-splash.is-open { opacity: 1; pointer-events: auto; }
.lang-splash__backdrop {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(20,20,20,0.9) 0%, rgba(0,0,0,0.98) 100%);
  backdrop-filter: blur(12px);
}
.lang-splash__card {
  position: relative; max-width: min(900px, 92vw); width: 100%;
  padding: clamp(32px, 5vw, 64px);
  background: linear-gradient(160deg, #161614 0%, #0a0a0a 100%);
  border: 1px solid var(--accent);
  border-radius: 24px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,204,0,0.2) inset;
  transform: scale(0.96);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.lang-splash.is-open .lang-splash__card { transform: scale(1); }
.lang-splash__head { text-align: center; margin-bottom: clamp(24px, 4vh, 40px); }
.lang-splash__logo { height: 40px; margin: 0 auto 20px; display: block; }
.lang-splash__eyebrow {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 12px; color: var(--accent); letter-spacing: 0.2em;
  text-transform: uppercase; margin: 0 0 12px;
}
.lang-splash__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw + 0.8rem, 2.2rem);
  font-weight: 700; margin: 0 0 8px; line-height: 1.15;
}
.lang-splash__hint { color: var(--fg-muted); font-size: 14px; margin: 0; }
.lang-splash__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(8px, 1vw, 14px);
}
@media (max-width: 640px) { .lang-splash__grid { grid-template-columns: repeat(2, 1fr); } }
.lang-splash__btn {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: clamp(16px, 2vw, 24px) 10px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; color: var(--fg); cursor: pointer;
  transition: border-color 0.25s ease, transform 0.2s ease, background 0.25s ease;
}
.lang-splash__btn:hover {
  border-color: var(--accent); background: var(--surface-2);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255,204,0,0.15);
}
.lang-splash__flag { font-size: clamp(22px, 2.2vw, 32px); line-height: 1; }
.lang-splash__native { font-weight: 600; font-size: clamp(13px, 1.1vw, 16px); }
.lang-splash__en {
  font-size: 11px; color: var(--fg-muted);
  text-transform: uppercase; letter-spacing: 0.08em;
}
/* Give the Chinese option a prominent accent border */
.lang-splash__btn[data-lang="zh"] {
  background: linear-gradient(180deg, rgba(255,204,0,0.08) 0%, var(--surface) 100%);
  border-color: rgba(255,204,0,0.4);
}

/* ---------- Global image fix: ensure lazy images always show -------------- */
/* Must stay at bottom — wins cascade against effects.css opacity:0 rule */
img[loading="lazy"] { opacity: 1 !important; }

/* ---------- Fix: prevent sections bleeding white ------------------------ */
main, section { background-color: transparent; }
body { background: var(--bg) !important; }
.section { background: var(--bg); }

/* ---------- Responsive hero title — prevent word breaking --------------- */
.hero .h-display,
.page-hero .h-display,
.h-display {
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}
@media (max-width: 640px) {
  .hero .h-display { font-size: clamp(1.7rem, 8vw, 2.6rem) !important; line-height: 1.08 !important; }
  .page-hero .h-display { font-size: clamp(1.8rem, 9vw, 3rem) !important; line-height: 1.1 !important; }
  .hero-subtitle { font-size: 0.95rem !important; }
  .hero::before, .hero::after { display: none !important; }
  .hero-overlay::before { display: none !important; }
  .hero-content { max-width: 100% !important; padding: 0 20px !important; }
  .showcase__grid { padding: 0 20px; }
  .showcase__media { aspect-ratio: 16/10; min-height: 260px; }
  .about-teaser-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .image-wall__row { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: clamp(2rem, 10vw, 3rem) !important; }
}

/* Prevent char spans from wrapping mid-word */
.hero .h-display .char,
.page-hero .h-display .char { display: inline-block; }
.hero .h-display .word,
.page-hero .h-display .word { display: inline-block; white-space: nowrap; }
.hero .h-display span[data-i18n],
.page-hero .h-display span[data-i18n] {
  display: block;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: normal;
}

/* Cap display size — 12rem was too aggressive for long words in ES/PT/DE */
.hero .h-display { font-size: clamp(2.5rem, 4.5vw + 0.75rem, 5.75rem) !important; }
.page-hero .h-display { font-size: clamp(2rem, 4vw + 0.5rem, 4.25rem) !important; }

/* ---------- Scroll indicator positioning fix --------------------------- */
.hero .scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}

/* ---------- Section anti-overflow guard -------------------------------- */
.hero, .showcase, .image-wall, .cta-band, .page-hero { max-width: 100vw; overflow-x: clip; }
.container { max-width: min(1280px, 100vw); }

/* ---------- h-display explicit safe-wrap on all breakpoints ----------- */
.h-display span { display: inline; word-break: keep-all; }
.hero .h-display { display: block; }
.hero .h-display > span { display: block; }

/* ---------- Product modal interactivity fix ---------------------------
   Ensures the product modal and its children are fully clickable when open.
   Previously the modal was rendered but pointer-events cascade blocked all
   interaction (close button, thumbs, add button). */
.product-modal { pointer-events: auto !important; }
.product-modal * { pointer-events: auto; }
#modal-mount.is-open { pointer-events: auto !important; }

/* ===========================================================================
   B2B SALES CONVERSION ELEMENTS
   Floating WhatsApp, Trust Band, Testimonials, Guarantees, FAQ
   =========================================================================== */

/* ---------- Floating WhatsApp CTA ---------------------------------------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 500;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 20px 14px 14px;
  background: #25D366; color: #fff;
  border-radius: 999px; text-decoration: none;
  font-weight: 600; font-size: 14px;
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wa-float:hover { transform: scale(1.05) translateY(-2px); box-shadow: 0 20px 40px rgba(37,211,102,0.5); }
.wa-float svg { flex-shrink: 0; }
@media (max-width: 640px) { .wa-float__label { display: none; } .wa-float { padding: 14px; } }

/* ---------- Trust Band ---------------------------------------------------- */
.trust-band { text-align: center; padding: var(--space-section-sm) 0; border-block: 1px solid var(--border); }
.trust-band__head { margin-bottom: 32px; }
.trust-band__chips {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(10px, 1.5vw, 18px); max-width: 1100px; margin: 0 auto;
}
.trust-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; font-size: 14px; font-weight: 500;
  transition: border-color 0.25s, transform 0.2s;
}
.trust-chip:hover { border-color: var(--accent); transform: translateY(-2px); }

/* ---------- Testimonials -------------------------------------------------- */
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2vw, 32px);
}
@media (min-width: 780px) { .testimonials__grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  position: relative;
  margin: 0; padding: clamp(28px, 2.4vw, 40px);
  background: linear-gradient(180deg, var(--surface) 0%, #0f0f0f 100%);
  border: 1px solid var(--border); border-radius: clamp(12px, 1vw, 20px);
  transition: border-color 0.3s, transform 0.4s;
}
.testimonial::before {
  content: "\201C"; position: absolute; top: 12px; left: 20px;
  font-family: Georgia, serif; font-size: 64px; color: var(--accent);
  line-height: 1; opacity: 0.6;
}
.testimonial:hover { border-color: var(--accent); transform: translateY(-4px); }
.testimonial__quote {
  font-size: clamp(1rem, 0.7vw + 0.9rem, 1.15rem); line-height: 1.7;
  color: rgba(245,245,245,0.9); margin: 20px 0 24px; font-style: italic;
}
.testimonial__author { border-top: 1px solid var(--border); padding-top: 16px; display: flex; flex-direction: column; gap: 4px; }
.testimonial__author strong { font-size: 15px; }
.testimonial__author span { font-size: 12px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* ---------- Guarantees ---------------------------------------------------- */
.guarantees__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
@media (min-width: 900px) { .guarantees__grid { grid-template-columns: repeat(4, 1fr); } }
.guarantee {
  padding: clamp(24px, 2.2vw, 36px); background: var(--surface);
  border: 1px solid var(--border); border-radius: clamp(12px, 1vw, 20px);
  transition: border-color 0.3s, transform 0.3s;
}
.guarantee:hover { border-color: var(--accent); transform: translateY(-4px); }
.guarantee__icon {
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,204,0,0.08); border: 1px solid rgba(255,204,0,0.35); border-radius: 14px;
  margin-bottom: 20px; color: var(--accent);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.guarantee__icon svg { width: 28px; height: 28px; }
.guarantee:hover .guarantee__icon {
  transform: scale(1.08) rotate(-4deg);
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(255,204,0,0.25);
}
.guarantee h3 { font-size: 17px; margin: 0 0 8px; font-weight: 700; }
.guarantee p { font-size: 14px; color: var(--fg-muted); margin: 0; line-height: 1.6; }

/* ---------- FAQ ----------------------------------------------------------- */
.faq__list { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; transition: border-color 0.25s;
}
.faq__item[open] { border-color: var(--accent); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 20px 24px;
  font-weight: 600; font-size: clamp(15px, 1vw, 17px);
  position: relative; padding-right: 56px;
  transition: color 0.2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 24px; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 24px; transition: transform 0.3s;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item summary:hover { color: var(--accent); }
.faq__item p {
  padding: 0 24px 20px; color: var(--fg-muted);
  font-size: 14px; line-height: 1.7; margin: 0;
}

/* ===========================================================================
   NEW: About page expansion (stats, timeline, factory, process, cert badges)
   =========================================================================== */

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 32px);
  padding: var(--space-subsection) 0;
  border-block: 1px solid var(--border);
}
@media (min-width: 780px) { .about-stats { grid-template-columns: repeat(4, 1fr); } }
.about-stat { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; padding: 0 clamp(12px, 2vw, 24px); }
.about-stat + .about-stat { border-left: 1px solid var(--border); }
@media (max-width: 779px) { .about-stat + .about-stat { border-left: 0; } }
.about-stat__value {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 1.5rem + 3vw, 4rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}
.about-stat__label {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 860px;
  margin: clamp(32px, 5vh, 64px) auto 0;
  padding: 0 0 0 clamp(40px, 6vw, 80px);
  list-style: none;
}
.timeline::before {
  content: ""; position: absolute;
  left: clamp(14px, 2vw, 24px); top: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--accent) 0%, var(--border) 100%);
}
.timeline__item { position: relative; padding: 12px 0 32px; display: flex; flex-direction: column; gap: 10px; }
.timeline__item::before {
  content: "";
  position: absolute;
  left: calc(clamp(14px, 2vw, 24px) - 8px - clamp(40px, 6vw, 80px));
  top: 22px;
  width: 16px; height: 16px;
  border-radius: 999px;
  background: var(--bg);
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(255,204,0,0.12);
}
.timeline__item--now::before { background: var(--accent); }
.timeline__year {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 0.8rem + 1.5vw, 2rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.timeline__body {
  margin: 0;
  color: rgba(245,245,245,0.82);
  font-size: 15px;
  line-height: 1.65;
}

/* Factory */
.about-factory {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (min-width: 900px) { .about-factory { grid-template-columns: 1fr 1.1fr; } }
.about-factory__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.about-factory__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 780px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-card {
  position: relative;
  padding: clamp(24px, 2vw, 36px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.3s, transform 0.3s;
}
.process-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.process-card__num {
  display: inline-block;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  width: 100%;
}
.process-card h3 { margin: 0 0 10px; font-size: 18px; font-weight: 700; }
.process-card p { margin: 0; color: var(--fg-muted); font-size: 14px; line-height: 1.6; }

/* Cert badges */
.cert-badges {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  margin-top: 24px;
}
.cert-badge {
  padding: 10px 18px;
  background: rgba(255,204,0,0.08);
  border: 1px solid rgba(255,204,0,0.3);
  border-radius: 999px;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
}

/* ===========================================================================
   NEW: Contact page expansion (regions, info grid)
   =========================================================================== */

.regions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 780px) { .regions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .regions-grid { grid-template-columns: repeat(4, 1fr); } }
.region-card {
  padding: clamp(24px, 2vw, 32px);
  background: linear-gradient(180deg, var(--surface) 0%, #0f0f0f 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.3s, transform 0.3s;
}
.region-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.region-card__kicker {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.12em;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.region-card h3 { margin: 0 0 10px; font-size: 18px; font-weight: 700; }
.region-card__body { margin: 0; color: var(--fg-muted); font-size: 13px; line-height: 1.6; }

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 780px) { .contact-info-grid { grid-template-columns: 1fr 1fr; } }
.contact-info-card {
  padding: clamp(24px, 2vw, 36px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.contact-info-card__headline {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin: 8px 0 12px;
  color: var(--fg);
}
.contact-info-card__link { margin-top: 12px; color: var(--fg-muted); font-size: 14px; }
.contact-info-card__link a { color: var(--accent); text-decoration: none; font-weight: 500; }
.contact-info-card__link a:hover { text-decoration: underline; }

/* ===========================================================================
   === About 2.0 ===
   Restructured About page: editorial hero, 4-up stats with dividers,
   Why-SAAO pillars, visual timeline with dots + headlines, factory hero image,
   process flow with connector, cert seals, team dark section.
   This block OVERRIDES older .about-stats / .timeline / .process-grid /
   .cert-badges definitions earlier in this file (CSS cascade).
   =========================================================================== */

/* Hero */
.about-hero .body-lg { max-width: 58ch; }

/* Stats band – override older .about-stats to unify spacing + dividers */
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding: var(--space-subsection) 0;
  border-block: 1px solid var(--border);
}
@media (min-width: 780px) {
  .about-stats { grid-template-columns: repeat(4, 1fr); gap: 48px; }
  .about-stat + .about-stat { border-left: 1px solid var(--border); padding-left: 32px; }
}
@media (max-width: 779px) { .about-stat + .about-stat { border-left: 0; padding-left: 0; } }

/* ----- Pillars ----- */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}
@media (min-width: 900px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar {
  position: relative;
  padding: 40px 32px;
  background: linear-gradient(180deg, var(--surface) 0%, #0a0a0a 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.pillar:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(255,204,0,0.06);
}
.pillar__num {
  display: inline-block;
  font-family: var(--font-mono, ui-monospace, monospace);
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  width: 100%;
}
.pillar h3 {
  margin: 0 0 10px;
  font-size: clamp(1.3rem, 0.8rem + 1.2vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.pillar p {
  margin: 0;
  color: rgba(245,245,245,0.75);
  font-size: 15px;
  line-height: 1.65;
}

/* ----- Timeline (override) ----- */
.timeline {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
  max-width: 880px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(255,204,0,0.3) 0%, var(--border) 100%);
}
.timeline__item {
  position: relative;
  padding: 0 0 36px 48px;
  display: block;
  gap: 0;
}
.timeline__item:not(:last-child) {
  border-bottom: 1px dashed rgba(255,255,255,0.06);
  margin-bottom: 8px;
}
/* Cancel older ::before dot so new .timeline__dot element drives visuals */
.timeline__item::before { content: none; }
.timeline__dot {
  position: absolute;
  left: 0;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--bg);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline__dot::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,204,0,0.35);
}
.timeline__item--now .timeline__dot::after {
  background: var(--accent);
  box-shadow: 0 0 12px rgba(255,204,0,0.5);
}
.timeline__year {
  display: block;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  font-weight: 600;
}
.timeline__headline {
  margin: 0 0 8px;
  font-size: clamp(1.15rem, 0.6vw + 1rem, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--fg);
}
.timeline__body {
  margin: 0;
  color: rgba(245,245,245,0.7);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ----- Factory section ----- */
.factory-section {
  position: relative;
  padding: 0;
  overflow: hidden;
  border-block: 1px solid var(--border);
  margin: clamp(60px, 8vh, 100px) 0;
}
.factory-section__media {
  position: relative;
  aspect-ratio: 21 / 9;
  max-height: 620px;
  min-height: 520px;
  background: var(--surface-2);
  overflow: hidden;
}
.factory-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.7);
}
.factory-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.2) 50%, rgba(10,10,10,0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(32px, 5vw, 64px) 0;
}
.factory-section__overlay .eyebrow {
  color: var(--accent);
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.factory-section__overlay .h-section {
  margin: 0 0 16px;
  color: var(--fg);
  max-width: 640px;
}
.factory-section__overlay .body-lg {
  color: rgba(245,245,245,0.85);
  max-width: 640px;
  margin: 0;
}
.factory-mini-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (min-width: 780px) { .factory-mini-stats { grid-template-columns: repeat(4, 1fr); } }
.factory-mini { font-family: var(--font-display); }
.factory-mini__value {
  display: block;
  font-size: clamp(1.4rem, 1vw + 1rem, 2rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.factory-mini__label {
  display: block;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ----- Process flow (override grid + connector) ----- */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
  margin-top: 32px;
}
@media (min-width: 780px) { .process-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.process-card { position: relative; }
@media (min-width: 780px) {
  .process-card + .process-card::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 50%;
    width: 4px;
    height: 1px;
    background: rgba(255,204,0,0.4);
  }
}
/* Mobile connector – subtle vertical tick between stacked cards */
@media (max-width: 779px) {
  .process-card + .process-card::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -14px;
    height: 8px;
    width: 1px;
    background: rgba(255,204,0,0.35);
  }
}
.process-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.05rem, 0.5vw + 1rem, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

/* ----- Certifications ----- */
.cert-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
  justify-content: center;
}
@media (min-width: 600px) { .cert-badges { grid-template-columns: repeat(3, 1fr); } }
.cert-seal {
  padding: 18px 20px;
  border: 1px solid rgba(255,204,0,0.4);
  border-radius: 999px;
  text-align: center;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(255,204,0,0.04);
  box-shadow: 0 0 0 0 rgba(255,204,0,0);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.cert-seal:hover {
  background: rgba(255,204,0,0.1);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255,204,0,0.12);
}

/* ----- Team section ----- */
.team-section {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--border);
  isolation: isolate;
}
.team-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('/assets/images/factory-team.jpg') center/cover no-repeat;
  filter: brightness(0.4) saturate(0.85);
}
.team-section__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.85) 100%);
}
.team-section__content {
  position: relative;
  z-index: 2;
  padding: clamp(80px, 14vh, 160px) 0;
  max-width: 720px;
}
.team-section__content .eyebrow {
  color: var(--accent);
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.team-section__tagline {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 13px;
  color: rgba(255,204,0,0.9);
  letter-spacing: 0.08em;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.team-section__content .h-section {
  margin: 0 0 20px;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.team-section__content .body-lg {
  color: rgba(245,245,245,0.82);
  max-width: 620px;
  margin: 0 0 40px;
}
.team-callouts {
  display: flex;
  gap: clamp(32px, 5vw, 64px);
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.team-callout {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.team-callout__value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 1rem + 2vw, 2.6rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.025em;
  line-height: 1;
}
.team-callout__label {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Tighten section-head spacing on About */
.about-hero + .section + .section .section-head,
.about-hero ~ .section .section-head {
  margin-bottom: 0;
}
.section-head .h-section {
  margin-top: 12px;
  max-width: 720px;
}

/* === Phase E: Industries served (icon strip) ==========================*/
.industries-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
@media (min-width: 640px) { .industries-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1100px) { .industries-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; } }
.industry-tile {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 24px 12px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  font-size: 13px; color: var(--fg); text-align: center; letter-spacing: 0.02em;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.industry-tile:hover {
  border-color: var(--accent); color: var(--accent);
  transform: translateY(-4px); background: var(--surface-2);
}
.industry-tile__icon { width: 28px; height: 28px; color: var(--accent); opacity: 0.9; transition: transform 0.25s ease, opacity 0.25s ease; }
.industry-tile:hover .industry-tile__icon { opacity: 1; transform: scale(1.1); }

/* === Phase E: Category tiles =========================================*/
.cat-tiles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 0;
}
@media (min-width: 640px) { .cat-tiles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .cat-tiles-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .cat-tiles-grid { grid-template-columns: repeat(4, 1fr); } }
.cat-tile {
  position: relative;
  display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 18px;
  padding: 18px 22px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  text-decoration: none; color: var(--fg);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.cat-tile:hover { border-color: var(--accent); background: var(--surface-2); transform: translateY(-3px); }
.cat-tile__num {
  font-family: var(--font-mono, ui-monospace, monospace);
  color: var(--accent); font-size: 13px; letter-spacing: 0.12em;
  align-self: start; padding-top: 4px;
}
.cat-tile__label { font-family: var(--font-display); font-size: 17px; font-weight: 600; }
.cat-tile__count {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 12px; color: var(--fg-muted);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.cat-tile__arrow {
  width: 18px; height: 18px; color: var(--accent); opacity: 0.6;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.cat-tile:hover .cat-tile__arrow { transform: translateX(6px); opacity: 1; }

/* === Phase E: FAQ accordion (button-based) ============================*/
.faq__list .faq__item {
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq__list .faq__item.is-open { border-color: var(--accent); }
.faq__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 26px; background: transparent; border: 0; color: var(--fg);
  font-family: inherit; font-size: clamp(15px, 1vw, 17px); font-weight: 600; text-align: left;
  cursor: pointer; transition: color 0.2s ease;
}
.faq__trigger:hover { color: var(--accent); }
.faq__plus {
  font-size: 24px; color: var(--accent);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; flex-shrink: 0;
}
.faq__item.is-open .faq__plus { transform: rotate(45deg); }
.faq__body {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__body > p {
  overflow: hidden; min-height: 0;
  margin: 0; padding: 0 26px; color: var(--fg-muted); font-size: 14.5px; line-height: 1.7;
}
.faq__item.is-open .faq__body { grid-template-rows: 1fr; }
.faq__item.is-open .faq__body > p { padding-bottom: 22px; }

/* ==========================================================================
   Catalogue toolbar — search + filters + sort + meta
   ========================================================================== */
.catalogue-toolbar {
  display: grid;
  gap: clamp(14px, 1.4vw, 20px);
  margin: 0 0 clamp(28px, 3vw, 44px);
  padding: clamp(18px, 2vw, 24px);
  background: linear-gradient(180deg, #131313 0%, #0b0b0b 100%);
  border: 1px solid var(--border);
  border-radius: clamp(14px, 1.2vw, 20px);
  position: sticky;
  top: calc(var(--header-h, 72px) + 6px);
  z-index: 40;
  box-shadow: 0 10px 40px -16px rgba(0, 0, 0, 0.7);
}
/* Solid backdrop that covers the gap above the sticky toolbar so cards
   can't show through the translucent header when scrolling past. */
.catalogue-toolbar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% - 1px);
  height: calc(var(--header-h, 72px) + 8px);
  background: var(--bg);
  z-index: -1;
  pointer-events: none;
  margin-inline: calc(-1 * clamp(16px, 4vw, 40px));
}

.catalogue-toolbar .filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.toolbar-row {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1vw, 16px);
}
.toolbar-row--top {
  gap: clamp(10px, 1.4vw, 18px);
  flex-wrap: wrap;
}
.toolbar-row--chips {
  align-items: stretch;
  min-width: 0;
}
.toolbar-row--meta {
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px dashed var(--border);
  margin-top: 2px;
  padding-top: 14px;
}

/* --- Search input --- */
.search-input {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 1 320px;
  min-width: 0;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.3s ease;
}
.search-input:hover { border-color: var(--border-strong); }
.search-input:focus-within {
  border-color: var(--accent);
  background: #141414;
  box-shadow: 0 0 0 4px rgba(255,204,0,0.12);
}
.search-input__icon {
  width: 18px; height: 18px;
  margin-inline: 14px 10px;
  color: var(--fg-muted);
  flex-shrink: 0;
  transition: color 0.2s;
}
.search-input:focus-within .search-input__icon { color: var(--accent); }

.search-input__field {
  flex: 1 1 auto;
  min-width: 0;
  padding: 13px 8px 13px 0;
  background: transparent;
  border: 0;
  color: var(--fg);
  font-family: inherit;
  font-size: 15px;
  letter-spacing: 0.005em;
  outline: none;
}
.search-input__field::placeholder {
  color: var(--fg-muted);
  opacity: 0.9;
}
.search-input__field::-webkit-search-cancel-button,
.search-input__field::-webkit-search-decoration { -webkit-appearance: none; display: none; }

.search-input__clear {
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-right: 6px;
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--fg-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.search-input__clear:hover { background: var(--surface-3); color: var(--fg); }
.search-input__clear svg { width: 14px; height: 14px; }

.search-input__kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  margin-right: 12px;
  padding: 0 6px;
  background: var(--surface-3);
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  color: var(--fg-muted);
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px;
  font-weight: 600;
  pointer-events: none;
}
.search-input:focus-within .search-input__kbd { display: none; }
@media (max-width: 640px) { .search-input__kbd { display: none; } }

/* --- Sort --- */
.sort-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.sort-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.sort-select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.sort-select {
  appearance: none;
  -webkit-appearance: none;
  padding: 11px 36px 11px 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}
.sort-select:hover { border-color: var(--border-strong); }
.sort-select:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,204,0,0.12);
}
.sort-select__chevron {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  color: var(--fg-muted);
  pointer-events: none;
  transition: color 0.2s;
}
.sort-select-wrap:hover .sort-select__chevron { color: var(--accent); }

/* --- Chip overrides (count badge) --- */
.catalogue-toolbar .chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 13px;
  line-height: 1;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--fg);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.catalogue-toolbar .chip:hover:not(.is-disabled) {
  border-color: var(--border-strong);
  background: var(--surface-3);
  transform: translateY(-1px);
}
.catalogue-toolbar .chip.is-active {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  font-weight: 600;
  box-shadow: 0 6px 18px -6px rgba(255,204,0,0.5);
}
.catalogue-toolbar .chip.is-disabled {
  opacity: 0.38;
  cursor: not-allowed;
  pointer-events: none;
}
.chip__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  padding: 2px 7px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  color: var(--fg-muted);
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, color 0.2s ease;
}
.catalogue-toolbar .chip.is-active .chip__count {
  background: rgba(0,0,0,0.15);
  color: var(--bg);
}
.catalogue-toolbar .chip:hover:not(.is-disabled) .chip__count { color: var(--fg); }

/* Scrollable chips on mobile */
@media (max-width: 780px) {
  .catalogue-toolbar { top: calc(var(--header-h, 72px) + 4px); }
  .catalogue-toolbar .filter-bar--scroll {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    margin-inline: -4px;
    padding-inline: 4px;
    padding-bottom: 4px;
    mask-image: linear-gradient(to right, transparent 0, black 12px, black calc(100% - 24px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 12px, black calc(100% - 24px), transparent 100%);
  }
  .catalogue-toolbar .filter-bar--scroll::-webkit-scrollbar { display: none; }
  .catalogue-toolbar .filter-bar--scroll .chip { flex-shrink: 0; }
  .toolbar-row--top { flex-direction: column; align-items: stretch; }
  .sort-wrap { justify-content: space-between; }
  .search-input { flex-basis: auto; }
}

/* --- Meta row --- */
.results-count {
  margin: 0;
  color: var(--fg-muted);
  font-size: 13px;
  line-height: 1.4;
}
.results-count strong {
  color: var(--fg);
  font-weight: 700;
  font-family: var(--font-mono, ui-monospace, monospace);
  letter-spacing: 0.02em;
}
.results-count__tag {
  display: inline-block;
  padding: 2px 10px;
  background: rgba(255,204,0,0.1);
  border: 1px solid rgba(255,204,0,0.3);
  border-radius: 999px;
  color: var(--accent);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.clear-filters {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--fg-muted);
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.clear-filters:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255,204,0,0.05);
}
.clear-filters svg { width: 12px; height: 12px; }

/* --- Empty state (upgraded) --- */
.catalogue-empty {
  padding: clamp(48px, 8vh, 96px) 20px;
  text-align: center;
  color: var(--fg-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.catalogue-empty[hidden] { display: none !important; }
.catalogue-empty__icon {
  width: 44px; height: 44px;
  color: var(--fg-dim);
  margin-bottom: 4px;
}
.catalogue-empty__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 0.9rem + 0.8vw, 1.6rem);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.015em;
}
.catalogue-empty__hint {
  margin: 0;
  font-size: 14px;
  color: var(--fg-muted);
}
.catalogue-empty__hint strong { color: var(--accent); font-family: var(--font-mono, ui-monospace, monospace); }
.catalogue-empty .btn { margin-top: 8px; }

/* ==========================================================================
   Catalogue toolbar — retractable panel
   ========================================================================== */
.toolbar-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
  flex-shrink: 0;
}
.toolbar-toggle:hover {
  border-color: var(--border-strong);
  background: var(--surface-3);
}
.toolbar-toggle:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,204,0,0.12);
}
.toolbar-toggle__icon { width: 16px; height: 16px; color: var(--fg-muted); }
.toolbar-toggle__chevron {
  width: 14px; height: 14px;
  color: var(--fg-muted);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.toolbar-toggle__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  padding: 2px 7px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 999px;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}
.toolbar-toggle[aria-expanded="false"] .toolbar-toggle__chevron { transform: rotate(180deg); }
.toolbar-toggle[aria-expanded="false"] { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.toolbar-toggle[aria-expanded="false"] .toolbar-toggle__icon,
.toolbar-toggle[aria-expanded="false"] .toolbar-toggle__chevron { color: var(--bg); }
.toolbar-toggle[aria-expanded="false"] .toolbar-toggle__count {
  background: rgba(0,0,0,0.2);
  color: var(--bg);
}

/* Collapsible panel wrapping chips + meta */
.toolbar-panel {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.4vw, 20px);
  max-height: 800px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.2s ease,
              margin-top 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.catalogue-toolbar.is-collapsed .toolbar-panel {
  max-height: 0;
  opacity: 0;
  margin-top: calc(-1 * clamp(14px, 1.4vw, 20px));
  pointer-events: none;
}

/* Tight padding + smaller controls in collapsed state */
.catalogue-toolbar.is-collapsed { padding-block: 10px; }
.catalogue-toolbar.is-collapsed .toolbar-row--top { gap: clamp(8px, 1vw, 12px); }
.catalogue-toolbar.is-collapsed .search-input__field { padding-block: 9px; font-size: 14px; }
.catalogue-toolbar.is-collapsed .search-input__icon { width: 16px; height: 16px; margin-inline: 12px 8px; }
.catalogue-toolbar.is-collapsed .search-input__kbd { display: none; }
.catalogue-toolbar.is-collapsed .sort-select { padding: 8px 30px 8px 12px; font-size: 12.5px; }
.catalogue-toolbar.is-collapsed .sort-label { display: none; }
.catalogue-toolbar.is-collapsed .toolbar-toggle { padding: 8px 12px; font-size: 12.5px; }
.catalogue-toolbar.is-collapsed .toolbar-toggle__icon { width: 14px; height: 14px; }

/* ==========================================================================
   About page hero — cinematic background image
   ========================================================================== */
.about-hero {
  position: relative;
  min-height: min(78vh, 720px);
  padding: 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  /* Full-bleed: break out of any container max-width */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
}

/* Background layer with slow Ken Burns zoom + dark overlay baked in */
.about-hero::before {
  content: "";
  position: absolute;
  inset: -4%;
  z-index: -2;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.60) 40%, rgba(0,0,0,0.75) 75%, rgba(0,0,0,0.95) 100%),
    url("/assets/images/about-hero.jpg");
  background-size: cover, cover;
  background-position: center 35%, center 35%;
  background-repeat: no-repeat, no-repeat;
  filter: saturate(1.05) contrast(1.05);
  animation: aboutHeroZoom 22s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes aboutHeroZoom {
  0%   { transform: scale(1.00) translate3d(0, 0, 0); }
  100% { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .about-hero::before { animation: none; }
}

/* Cinematic dark overlay — keeps text legible over any part of the image */
.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.65) 40%, rgba(0,0,0,0.80) 75%, rgba(0,0,0,0.97) 100%),
    rgba(0,0,0,0.45);
  pointer-events: none;
}

/* Corner accent brackets (matches home hero language) */
.about-hero-corner {
  position: absolute;
  width: 44px;
  height: 44px;
  border: 0 solid var(--accent);
  z-index: 2;
  pointer-events: none;
  opacity: 0.85;
}
.about-hero-corner--tl { top: clamp(20px, 3vh, 40px); left: clamp(20px, 3vw, 48px); border-top-width: 1.5px; border-left-width: 1.5px; }
.about-hero-corner--tr { top: clamp(20px, 3vh, 40px); right: clamp(20px, 3vw, 48px); border-top-width: 1.5px; border-right-width: 1.5px; }
.about-hero-corner--bl { bottom: clamp(20px, 3vh, 40px); left: clamp(20px, 3vw, 48px); border-bottom-width: 1.5px; border-left-width: 1.5px; }
.about-hero-corner--br { bottom: clamp(20px, 3vh, 40px); right: clamp(20px, 3vw, 48px); border-bottom-width: 1.5px; border-right-width: 1.5px; }

/* Side marginalia label */
.about-hero-label {
  position: absolute;
  left: clamp(20px, 2.5vw, 40px);
  top: 50%;
  transform-origin: left center;
  transform: rotate(-90deg) translateX(-50%);
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.85;
  white-space: nowrap;
  z-index: 2;
  pointer-events: none;
}

/* Container inside about-hero is the original .container reveal — content column */
.about-hero .container {
  position: relative;
  z-index: 3;
  padding-block: clamp(96px, 14vh, 180px) clamp(56px, 8vh, 96px);
  max-width: var(--container);
  width: 100%;
  padding-inline: clamp(20px, 5vw, 64px);
}

/* Kill the grid overlay ::before from .page-hero since we have a real image now.
   Gradient darkens the image so hero text stays legible. */
.about-hero.page-hero::before {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.60) 40%, rgba(0,0,0,0.75) 75%, rgba(0,0,0,0.95) 100%),
    image-set(
      url("/assets/images/about-hero.webp") type("image/webp"),
      url("/assets/images/about-hero.jpg") type("image/jpeg")
    );
  background-size: cover, cover;
  background-position: center 35%, center 35%;
  background-repeat: no-repeat, no-repeat;
  mask-image: none;
  -webkit-mask-image: none;
  opacity: 1;
  inset: -4%;
}

/* Typography inside about-hero */
.about-hero .eyebrow {
  color: var(--accent);
  background: rgba(8,8,8,0.35);
  padding: 6px 14px;
  border: 1px solid rgba(255,204,0,0.25);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin-bottom: 22px;
  font-size: 11px;
  letter-spacing: 0.3em;
}
.about-hero .h-display {
  color: #fff;
  max-width: 18ch;
  text-shadow: 0 6px 40px rgba(0,0,0,0.55);
  margin-bottom: 20px;
}
.about-hero .body-lg {
  color: rgba(255,255,255,0.88);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  max-width: 58ch;
}

/* Scroll cue */
.about-hero-scroll {
  position: absolute;
  bottom: clamp(18px, 3vh, 32px);
  right: clamp(22px, 3vw, 48px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  z-index: 3;
  pointer-events: none;
}
.about-hero-scroll__line {
  width: 40px;
  height: 1px;
  background: var(--accent);
  position: relative;
  overflow: hidden;
}
.about-hero-scroll__line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  animation: aboutScrollCue 2.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
@keyframes aboutScrollCue {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@media (max-width: 780px) {
  .about-hero { min-height: 72vh; }
  .about-hero-label { display: none; }
  .about-hero-corner { width: 28px; height: 28px; }
  .about-hero .h-display { max-width: none; }
}
