/* Lamurindo design system — shared across every page (variables, reset, nav, mega menu, footer, generic layout utilities). Always loaded. */

/* =============================================
   LAMURINDO DESIGN SYSTEM — CSS VARIABLES
   Reference sheet for WordPress implementation
   ============================================= */
:root {
  /* --- Brand Colors --- */
  --primary:        #0A2E4A;   /* Deep navy — primary brand, headers, footer bg */
  --primary-light:  #0E3D61;   /* Slightly lighter navy — hover states on dark bg */
  --accent:         #E87722;   /* Warm amber-orange — CTAs, highlights, active states */
  --accent-hover:   #CF6910;   /* Darker accent for button hover */

  /* --- Neutrals --- */
  --white:          #FFFFFF;
  --off-white:      #F5F4F1;   /* Page background, section bg alternates */
  --surface:        #ECEAE5;   /* Card backgrounds, subtle dividers */
  --border:         #D8D5CE;   /* Default border color */
  --text-primary:   #1A1A18;   /* Body text */
  --text-secondary: #5A5950;   /* Muted labels, captions */
  --text-on-dark:   #FFFFFF;   /* Text on navy backgrounds */
  --text-muted-dark:#A8C0D0;   /* Muted text on dark backgrounds */

  /* --- Typography --- */
  --font-display:   'Manrope', sans-serif;    /* Headings, nav, labels */
  --font-body:      'Inter', sans-serif;      /* Body copy, descriptions */

  /* --- Font Sizes --- */
  --text-xs:    12px;
  --text-sm:    13px;
  --text-base:  15px;
  --text-md:    17px;
  --text-lg:    20px;
  --text-xl:    26px;
  --text-2xl:   34px;
  --text-3xl:   46px;
  --text-hero:  62px;

  /* --- Spacing --- */
  --space-xs:   8px;
  --space-sm:   16px;
  --space-md:   24px;
  --space-lg:   40px;
  --space-xl:   64px;
  --space-2xl:  96px;
  --space-3xl:  128px;

  /* --- Radius --- */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  20px;
  --radius-pill:100px;

  /* --- Transitions --- */
  --transition-fast:  150ms ease;
  --transition-base:  220ms ease;
  --transition-slow:  350ms ease;

  /* --- Container --- */
  --container-max:   1200px;
  --container-pad:   40px;
  --nav-height:      72px;
  --nav-height-shrunk: 54px; /* 3/4 of --nav-height — scrolled state and collapsed/hamburger nav */
}
/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-primary);
  background: var(--off-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
/* Prevent descender clipping in form/control text across browsers */
button, input, select, textarea {
  font: inherit;
  line-height: 1.35;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: #ffffff;
  z-index: 1000;
  border-bottom: 1px solid rgba(10,46,74,0.08);
  transition: box-shadow var(--transition-base), height var(--transition-base), background-color var(--transition-base), backdrop-filter var(--transition-base);
}
/* Suspended during active window resize (see the resize listener in
   site.js) to avoid stutter when dragging across the collapse breakpoint. */
body.is-resizing .nav,
body.is-resizing .nav *,
body.is-resizing .mega-menu {
  transition: none !important;
}
.nav.scrolled {
  height: var(--nav-height-shrunk);
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(10,46,74,0.1);
}
.nav.scrolled .nav-link {
  transform: scale(0.93);
}
.nav.scrolled ~ .mega-menu {
  top: var(--nav-height-shrunk);
}
@media (min-width: 990px) {
  .nav.scrolled .nav-logo-monogram {
    width: 26px;
    height: 30px;
  }
  .nav.scrolled .nav-logo-wordmark {
    width: 114px;
  }
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 48px;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0;
  flex: 0 0 auto;
  /* Pinned to the logo's natural width (34 + 11 gap + 152). */
  width: 197px;
}
.nav-logo-monogram {
  width: 34px;
  height: 40px;
  object-fit: contain;
  flex: 0 0 auto;
  transition: width var(--transition-base), height var(--transition-base);
}
.nav-logo-wordmark {
  width: 152px;
  height: auto;
  flex: 0 0 auto;
  transition: width var(--transition-base);
}
.nav-logo-mark {
  width: 34px; height: 34px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: var(--white);
}
.nav-links-row {
  display: flex;
  align-items: stretch;
  height: 100%;
  gap: 4px;
  /* Stretch to fill nav-inner so .nav-cta-group can push itself (and, within
     it, .nav-lang-switch) to the far right edge of the bar. */
  flex: 1;
}
.nav-links {
  display: flex;
  align-items: stretch;
  height: 100%;
  gap: 4px;
}
.nav-cta-group {
  display: flex;
  align-items: stretch;
  height: 100%;
  gap: 4px;
  /* Stretch so .nav-lang-switch's margin-left:auto can push it to the far
     right edge, while .nav-contact-link stays put right after .nav-links. */
  flex: 1;
}
.nav-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  color: var(--primary);
  cursor: pointer;
  transition: color var(--transition-fast);
}
.nav-menu-toggle:hover,
.nav-menu-toggle[aria-expanded="true"] {
  color: var(--accent);
}
.nav-menu-toggle svg {
  width: 22px;
  height: 22px;
}
.menu-bar {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}
.nav-menu-toggle[aria-expanded="true"] .menu-bar-top {
  transform: translateY(5px) rotate(45deg);
}
.nav-menu-toggle[aria-expanded="true"] .menu-bar-mid {
  opacity: 0;
}
.nav-menu-toggle[aria-expanded="true"] .menu-bar-bottom {
  transform: translateY(-5px) rotate(-45deg);
}
.nav-mobile-products {
  display: none;
}
.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: stretch;
}
.nav-link {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  height: 100%;
  padding: 0 16px;
  letter-spacing: 0.2px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-base);
  cursor: pointer;
  display: flex; align-items: center; gap: 5px;
}
.nav-link:hover,
.nav-item.active > .nav-link,
.nav-link.active,
.nav-link[aria-expanded="true"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.nav-link svg { width: 10px; height: 10px; transition: transform var(--transition-fast); }
.nav-link[aria-expanded="true"] svg { transform: rotate(180deg); }
.nav-lang-switch {
  align-items: center;
  margin-left: auto;
}
.lang-switch-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  padding: 0 4px;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color var(--transition-fast);
}
.lang-switch-trigger:hover,
.lang-switch-trigger:focus-visible {
  color: var(--accent);
}
.lang-globe-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}
/* Give display UI text enough vertical room for descenders (e.g. g, y, p) */
.nav-link,
.mega-section-label,
.mega-cat-link,
.mega-pane3-header,
.mega-pane4-header,
.mega-subproduct-link,
.mega-view-all,
.btn-primary,
.btn-secondary,
.section-label,
.solution-link,
.prod-card-cat,
.prod-card h3,
.prod-card-tag,
.prod-sidebar-link,
.prod-spec-label,
.prod-spec-value {
  line-height: 1.35;
}
/* Simple flat dropdown — Brands */
.nav-dropdown-flat {
  position: absolute;
  top: 100%;
  left: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-width: 220px;
  padding: 6px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.13);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
  pointer-events: none;
  z-index: 200;
}
.nav-dropdown-flat::before {
  content: '';
  position: absolute;
  top: -12px; left: 0; right: 0;
  height: 12px;
}
.nav-item:hover .nav-dropdown-flat,
.nav-item.open .nav-dropdown-flat {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.nav-item:not(:hover):not(.open) .nav-dropdown-flat {
  transition-delay: 80ms;
}
.nav-dropdown-flat .dd-section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 8px 12px 4px;
}
.nav-dropdown-flat a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--text-primary);
  transition: background 120ms ease, color 120ms ease;
  cursor: pointer;
}
.nav-dropdown-flat a:hover {
  background: var(--off-white);
  color: var(--primary);
}
/* Mega menu panel */
.mega-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease, top var(--transition-base);
  pointer-events: none;
  z-index: 999;
}
.mega-close-btn {
  position: absolute;
  top: 10px;
  right: max(16px, calc((100vw - var(--container-max)) / 2 + var(--container-pad)));
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: color 120ms ease, border-color 120ms ease, background 120ms ease;
}
.mega-close-btn:hover {
  color: var(--primary);
  border-color: rgba(10,46,74,0.22);
  background: var(--off-white);
}
.mega-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}
.mega-menu-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 170px 210px 1fr;
  min-height: 360px;
}
/* Pane 2 — industry groups */
.mega-pane2 {
  border-right: 1px solid var(--border);
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mega-industry-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: background 120ms ease, color 120ms ease;
  margin: 0 6px;
  border: none;
  background: none;
  width: calc(100% - 12px);
  text-align: left;
}
.mega-industry-item:hover {
  background: var(--off-white);
  color: var(--primary);
}
.mega-industry-item.active {
  background: rgba(10,46,74,0.08);
  color: var(--primary);
}
.mega-industry-item svg {
  width: 10px; height: 10px;
  opacity: 0.35;
  flex-shrink: 0;
}
.mega-industry-item.active svg { opacity: 0.6; }
/* Pane 3 — sub-categories */
.mega-pane3 {
  border-right: 1px solid var(--border);
  padding: 16px 0;
  display: flex;
  flex-direction: column;
}
.mega-cat-group {
  display: none;
  flex-direction: column;
  gap: 2px;
}
.mega-cat-group.active { display: flex; }
.mega-industry-overview {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  padding: 8px 22px 10px;
  transition: opacity 120ms ease;
}
.mega-industry-overview:hover { opacity: 0.75; }
.mega-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 12px 16px 4px;
}
.mega-section-label:first-child { padding-top: 8px; }
.mega-cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 16px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background 120ms ease, color 120ms ease;
  margin: 0 6px;
  border: none;
  background: none;
  width: calc(100% - 12px);
  text-align: left;
  white-space: nowrap;
}
.mega-cat-item:hover {
  background: var(--off-white);
  color: var(--primary);
}
.mega-cat-item.active {
  background: rgba(10,46,74,0.07);
  color: var(--primary);
  font-weight: 500;
}
.mega-cat-item svg {
  width: 10px; height: 10px;
  opacity: 0.4;
  flex-shrink: 0;
}
.mega-cat-item.active svg { opacity: 0.7; }
/* Pane 4 — product list */
.mega-pane4 {
  padding: 20px 28px;
  display: none;
}
.mega-pane4.active { display: block; }
.mega-pane4-header {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}
.mega-pane4-desc {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
}
.mega-subproducts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 4px;
}
.mega-subproduct-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--text-primary);
  transition: background 120ms ease, color 120ms ease;
  cursor: pointer;
  border: none;
  background: none;
  text-align: left;
  width: 100%;
}
.mega-subproduct-link:hover {
  background: var(--off-white);
  color: var(--primary);
}
.mega-subproduct-link .sp-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  transition: background 120ms ease;
}
.mega-subproduct-link:hover .sp-dot { background: var(--accent); }
.mega-subproduct-link.seo-item .sp-dot { background: var(--accent); }
.mega-subproduct-link.seo-item { font-weight: 500; }
.mega-subproduct-link.is-featured,
.industry-product-link.is-featured {
  font-weight: 600;
  color: var(--primary);
}
.star-badge {
  color: var(--accent);
  font-size: 11px;
  line-height: 1;
}
.mega-pane4-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mega-view-all {
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
  cursor: pointer;
  transition: opacity 120ms ease;
}
.mega-view-all:hover { opacity: 0.75; }
/* Brands simple dropdown */
.nav-dropdown-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 1px 7px;
  border-radius: var(--radius-pill);
  margin-left: 6px;
  vertical-align: middle;
}
.badge-brand {
  background: rgba(30,120,60,0.1);
  color: #1e7840;
}
@media (max-width: 989px) {
  .nav, .nav.scrolled {
    height: var(--nav-height-shrunk);
    /* Collapsed/hamburger nav stays fully opaque -- no translucent blur
       effect while scrolling on mobile. */
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav.nav-open {
    box-shadow: 0 8px 28px rgba(10,46,74,0.22);
  }
  .nav-logo-monogram {
    width: 26px;
    height: 30px;
  }
  .nav-logo-wordmark {
    width: 114px;
  }
  .nav.scrolled .nav-link {
    transform: none;
  }
  .nav-inner {
    justify-content: space-between;
    max-width: none;
    gap: 10px;
  }
  .nav-logo {
    order: 1;
    width: auto;
    flex: 0 1 auto;
    min-width: 0;
  }
  .nav-menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(10,46,74,0.15);
    border-radius: var(--radius-md);
    background: none;
  }
  .nav-menu-toggle svg {
    width: 20px;
    height: 20px;
  }
  .nav-links {
    position: absolute;
    top: calc(var(--nav-height-shrunk) - 1px);
    left: var(--container-pad);
    right: var(--container-pad);
    display: none;
    flex-direction: column;
    align-items: stretch;
    height: auto;
    gap: 4px;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 0;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 10px;
    box-shadow: 0 18px 42px rgba(10,46,74,0.16);
  }
  .nav-links.is-open {
    display: flex;
  }
  .nav-item {
    height: auto;
  }
  .nav-link {
    justify-content: space-between;
    width: 100%;
    height: auto;
    padding: 11px 12px;
    font-size: var(--text-sm);
    font-weight: 700;
    border-bottom: none;
    border-radius: var(--radius-md);
  }
  .nav-link:hover, .nav-item.active > .nav-link, .nav-link.active, .nav-link[aria-expanded="true"] {
    background: rgba(10,46,74,0.06);
  }
  .nav-links-row {
    order: 3;
    flex: 0 0 auto;
    gap: 0;
    height: auto;
    min-width: 0;
  }
  .nav-cta-group {
    flex: 0 0 auto;
    align-items: center;
    height: auto;
    gap: 8px;
  }
  .nav-contact-link {
    justify-content: center;
    width: auto;
    height: auto;
    padding: 8px 16px;
    background: var(--accent);
    color: var(--white);
  }
  .nav-contact-link:hover,
  .nav-contact-link.active {
    background: var(--accent-hover);
    color: var(--white);
  }
  .nav-lang-switch {
    align-items: center;
    margin-left: 0;
  }
  .lang-switch-trigger {
    justify-content: center;
    width: auto;
    height: auto;
    padding: 8px 10px;
    font-size: 12px;
    color: var(--primary);
    border-radius: var(--radius-md);
    border: 1px solid rgba(10,46,74,0.15);
  }
  .lang-switch-trigger:hover,
  .lang-switch-trigger:focus-visible {
    color: var(--accent);
    background: none;
  }
  .nav-mobile-products.is-open {
    display: block;
    padding: 0 0 8px 14px;
    max-height: calc(100vh - var(--nav-height-shrunk) - 60px);
    overflow-y: auto;
  }
  .mmp-tree {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .nav-mobile-products a,
  .mmp-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 38px;
    padding: 8px 12px;
    border-left: 1px solid rgba(10,46,74,0.12);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-family: var(--font-display);
    font-size: 13px;
    width: 100%;
    background: none;
    border-top: none;
    border-right: none;
    border-bottom: none;
    text-align: left;
    cursor: pointer;
  }
  .nav-mobile-products a:hover,
  .mmp-toggle:hover,
  .mmp-toggle[aria-expanded="true"] {
    background: rgba(10,46,74,0.06);
    color: var(--primary);
  }
  .mmp-toggle svg {
    width: 9px;
    height: 9px;
    flex-shrink: 0;
    opacity: 0.5;
    transition: transform 150ms ease;
  }
  .mmp-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
    opacity: 0.85;
  }
  .mmp-cats,
  .mmp-products {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 12px;
    margin-top: 2px;
  }
  .mmp-cats[hidden],
  .mmp-products[hidden] {
    display: none;
  }
  .mmp-cat-toggle {
    font-size: 12.5px;
  }
  .mmp-products a {
    min-height: 34px;
    padding: 7px 12px;
    font-size: 12.5px;
    color: var(--text-secondary);
  }
  .mmp-overview {
    color: var(--accent);
    font-weight: 500;
  }
  .mmp-search-link {
    margin-top: 4px;
  }
}
@media (max-width: 420px) {
  .nav-logo {
    gap: 7px;
  }
  .nav-logo-monogram {
    width: 22px;
    height: 26px;
  }
  .nav-logo-wordmark {
    display: block;
    width: 82px;
  }
  .nav-inner {
    gap: 8px;
  }
  .nav-menu-toggle {
    width: 34px;
    height: 34px;
  }
  .nav-cta-group {
    gap: 6px;
  }
  .nav-contact-link {
    padding: 8px 10px;
    font-size: 12px;
  }
  .lang-switch-trigger {
    gap: 4px;
    padding: 8px 8px;
  }
  .lang-globe-icon {
    width: 15px;
    height: 15px;
  }
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  letter-spacing: 0.2px;
  transition: background var(--transition-fast), transform var(--transition-base);
  cursor: pointer; border: none;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }
.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.hero-image-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}
.hero-badge-icon {
  width: 40px; height: 40px;
  background: rgba(232,119,34,0.12);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
/* =============================================
   SECTION WRAPPER
   ============================================= */
.section {
  padding: var(--space-2xl) 0;
}
.section-sm { padding: var(--space-xl) 0; }
.section-alt { background: var(--white); }
.section-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-xs);
  font-family: var(--font-display);
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: var(--space-sm);
}
.section-title em { font-style: normal; color: var(--accent); }
.section-body {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 580px;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-xl);
  gap: var(--space-lg);
}
.section-header-left { flex: 1; }
.about-text .section-body { max-width: 100%; }
/* =============================================
   DISTRIBUTION MAP STRIP
   ============================================= */
.distribution-strip {
  background: var(--primary);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}
.distribution-strip-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 32px 32px;
}
.distribution-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-xl);
  align-items: center;
}
.distribution-text .section-label { color: rgba(232,119,34,0.9); }
.distribution-text .section-title { color: var(--white); }
.distribution-text .section-body { color: var(--text-muted-dark); }
.distribution-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}
.dist-feat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dist-feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.dist-feat-icon svg {
  width: 20px;
  height: 20px;
}
.dist-feat h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0;
}
.dist-feat p {
  font-size: 12px;
  color: var(--text-muted-dark);
  line-height: 1.6;
}
/* =============================================
   PROJECTS SECTION
   ============================================= */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
.project-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  cursor: pointer;
}
.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.project-card-body {
  padding: var(--space-md);
}
.project-tag {
  display: inline-block;
  background: rgba(10,46,74,0.07);
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}
.project-card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.35;
  margin-bottom: 8px;
}
.project-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.65;
}
.project-card-meta {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 12px;
  display: flex; gap: 12px;
}
@media (max-width: 768px) {
  #about-split-section {
    padding-top: 0;
  }
  .distribution-inner {
    grid-template-columns: 1fr;
  }
}
.case-final-cta .btn-primary {
  justify-self: end;
  white-space: nowrap;
}
@media (max-width: 980px) {
  .case-final-cta .btn-primary {
    justify-self: start;
  }
}
@media (max-width: 640px) {
  :root {
    --container-pad: 20px;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .page-hero {
    padding: calc(var(--nav-height) + var(--space-lg)) 0 var(--space-lg);
  }
}
/* =============================================
   PRODUCT LIST PAGE
   ============================================= */
.product-list-page {
  display: none;
}
.product-list-page.active {
  display: block;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
}
.pill:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(10,46,74,0.04);
}
.pill.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.pill-count {
  background: rgba(255,255,255,0.2);
  border-radius: var(--radius-pill);
  padding: 1px 7px;
  font-size: 11px;
}
.pill:not(.active) .pill-count {
  background: var(--surface);
  color: var(--text-secondary);
}
.prod-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  cursor: pointer;
  display: flex; flex-direction: column;
}
.prod-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.09);
  border-color: rgba(10,46,74,0.2);
}
.prod-card-cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-xs);
  font-family: var(--font-display);
}
.prod-card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.35;
  margin-bottom: 8px;
}
.prod-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}
.prod-card-footer {
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--surface);
  display: flex; align-items: center; justify-content: space-between;
}
.prod-card-tag {
  font-size: 11px;
  background: var(--surface);
  color: var(--text-secondary);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.prod-card-arrow {
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  font-size: 13px;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}
.prod-card:hover .prod-card-arrow {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.page-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease;
}
.page-btn:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
}
.page-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.no-results {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  color: var(--text-secondary);
  display: none;
  grid-column: 1 / -1;
}
.no-results svg {
  width: 48px; height: 48px;
  margin: 0 auto var(--space-sm);
  opacity: 0.25;
}
.no-results h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--text-primary);
  margin-bottom: 8px;
}
/* =============================================
   CTA STRIP
   ============================================= */
.cta-strip {
  background: var(--primary);
  padding: var(--space-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,119,34,0.12) 0%, transparent 60%);
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-sm);
  position: relative;
}
.cta-strip p {
  color: var(--text-muted-dark);
  max-width: 460px;
  margin: 0 auto var(--space-lg);
  position: relative;
}
.cta-strip .btn-primary { position: relative; }
/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #071E30;
  padding: var(--space-xl) 0 var(--space-lg);
  color: var(--text-muted-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}
.footer-brand .nav-logo-mark { background: var(--accent); }
.footer-brand .nav-logo { margin-bottom: var(--space-sm); }
.footer-brand p {
  font-size: var(--text-sm);
  line-height: 1.75;
  color: var(--text-muted-dark);
}
.footer-address {
  font-style: normal;
  font-size: var(--text-sm);
  line-height: 1.75;
  color: var(--text-muted-dark);
  margin-top: var(--space-sm);
}
.footer-address a {
  color: var(--text-muted-dark);
  transition: color var(--transition-fast);
}
.footer-address a:hover { color: var(--white); }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-sm);
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: var(--text-sm);
  color: var(--text-muted-dark);
  transition: color var(--transition-fast);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
}
.footer-social {
  display: flex; gap: 10px;
}
.social-btn {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-family: inherit;
  background: none;
  color: rgba(255,255,255,0.4);
  transition: border-color var(--transition-fast), color var(--transition-fast);
  cursor: pointer;
}
.social-btn:hover {
  border-color: rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85);
}
@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(180px, 1fr);
    gap: var(--space-lg) var(--space-xl);
  }
}
@media (max-width: 640px) {
  .footer {
    padding: var(--space-lg) 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
  }
  .footer-brand p {
    max-width: 36rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }
  .footer-social {
    flex-wrap: wrap;
  }
}
/* =============================================
   PAGE TRANSITIONS
   ============================================= */
.page-section {
  display: none;
}
.page-section.active {
  display: block;
}
#home-page.active { display: block; }
/* =============================================
   ABOUT PAGE
   ============================================= */
.page-hero {
  background: var(--primary);
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}
.page-hero-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero-inner { position: relative; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.8px;
  margin-bottom: var(--space-sm);
}
.page-hero p {
  font-size: var(--text-md);
  color: var(--text-muted-dark);
  max-width: 520px;
}
.anim-delay-1 { animation-delay: 0.1s; opacity: 0; }
.anim-delay-2 { animation-delay: 0.2s; opacity: 0; }
.anim-delay-3 { animation-delay: 0.3s; opacity: 0; }
.prod-sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-md); margin-bottom: var(--space-sm); }
.prod-sidebar-card h4 { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--primary); margin-bottom: var(--space-sm); text-transform: uppercase; letter-spacing: 0.5px; }
.prod-sidebar-link { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: var(--radius-md); font-size: 13px; color: var(--text-secondary); cursor: pointer; transition: background 120ms ease, color 120ms ease; border: none; background: none; width: 100%; text-align: left; }
.prod-sidebar-link:hover { background: var(--off-white); color: var(--primary); }
.prod-sidebar-link.active { background: rgba(10,46,74,0.07); color: var(--primary); font-weight: 600; }
.prod-sidebar-link .sl-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--border); flex-shrink: 0; }
.prod-sidebar-link.active .sl-dot, .prod-sidebar-link:hover .sl-dot { background: var(--accent); }
.prod-cta-card { background: var(--primary); border-radius: var(--radius-lg); padding: var(--space-md); }
.prod-cta-card h4 { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.prod-cta-card p { font-size: 13px; color: var(--text-muted-dark); line-height: 1.6; margin-bottom: var(--space-sm); }
.prod-cta-card .btn-primary { width: 100%; justify-content: center; }
.mech-card-icon { font-size: 22px; margin-bottom: 8px; }
.prod-sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-md); margin-bottom: var(--space-sm); }
.prod-sidebar-card h4 { font-family: var(--font-display); font-size: 12px; font-weight: 700; color: var(--primary); margin-bottom: var(--space-sm); text-transform: uppercase; letter-spacing: 0.5px; }
.prod-sidebar-link { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: var(--radius-md); font-size: 13px; color: var(--text-secondary); cursor: pointer; transition: background 120ms ease, color 120ms ease; border: none; background: none; width: 100%; text-align: left; }
.prod-sidebar-link:hover { background: var(--off-white); color: var(--primary); }
.prod-sidebar-link.active { background: rgba(10,46,74,0.07); color: var(--primary); font-weight: 600; }
.prod-sidebar-link .sl-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--border); flex-shrink: 0; }
.prod-sidebar-link.active .sl-dot, .prod-sidebar-link:hover .sl-dot { background: var(--accent); }
.prod-cta-card { background: var(--primary); border-radius: var(--radius-lg); padding: var(--space-md); }
.prod-cta-card h4 { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.prod-cta-card p { font-size: 13px; color: var(--text-muted-dark); line-height: 1.6; margin-bottom: var(--space-sm); }
.prod-cta-card .btn-primary { width: 100%; justify-content: center; }
.mech-card-icon { font-size: 22px; margin-bottom: 8px; }
/* Split-site overrides */
.page-section,
.product-detail-page {
  display: block;
}
.site-main {
  min-height: 100vh;
}
.hero-visual {
  min-width: 0;
  justify-self: end;
}
.hero-image-frame {
  width: min(100%, 520px);
  margin-left: auto;
}
#nav-products-trigger {
  cursor: pointer;
}
.mega-subproduct-link.is-disabled {
  cursor: default;
}
.mega-subproduct-link.is-disabled:hover {
  background: transparent;
  color: var(--text-primary);
}
.issue-subsection-head {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0 var(--space-lg);
}
.issue-subsection-head:first-child { margin-top: 0; }
.issue-subsection-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}
.issue-subsection-head::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
@media (max-width: 768px) {
  .prod-sidebar-card {
    display: none;
  }
}
