/* ===========================================
   VORTTEK — Light Theme · Premium & Clean
   =========================================== */

@font-face {
  font-family: 'Aspekta';
  src: url('Aspekta300Font.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'OnstageSerial';
  src: url('fonts/OnStageSerial Bold/OnStageSerial Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg:        #ffffff;
  --bg-2:      #f5f5f7;
  --bg-card:   #ffffff;
  --blue:      #00A8FF;
  --green:     #00FF94;
  --text:      #1d1d1f;
  --text-dim:  #6e6e73;
  --text-mute: #aeaeb2;
  --border:    rgba(0,0,0,0.08);
  --shadow-sm: 0 1px 6px rgba(0,0,0,0.05), 0 4px 18px rgba(0,0,0,0.04);
  --shadow-md: 0 6px 30px rgba(0,0,0,0.09), 0 16px 52px rgba(0,0,0,0.06);
  --font-d:    'Aspekta', 'Inter', sans-serif;
  --font-b:    'Aspekta', 'Inter', sans-serif;
  --nav-h:     68px;
  --pad:       80px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Utility ---- */
.gradient-text {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  color: inherit;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-overline {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Aspekta', sans-serif;
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.75;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all 0.28s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover { background: #0090dd; }
.btn-primary > * { position: relative; z-index: 1; }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(0,0,0,0.18);
}

.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-large { padding: 18px 44px; font-size: 15px; }


/* ============================================
   NAVIGATION
   ============================================ */
#navbar {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  /* default: light/frosted — hero and all light sections */
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

/* over #hero-generator dark section */
#navbar.over-dark {
  background: rgba(8,8,8,0.40);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: none;
}

/* scrolled = same as default light (kept for backwards compat with other rules) */
#navbar.scrolled {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
}

.nav-container {
  width: 100%;
  padding: 0 40px;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.nav-end {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo { display: flex; align-items: center; }

.logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.logo-img--footer {
  height: 30px;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  justify-self: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* default: light navbar — dark text */
.nav-links a {
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #1a1a1a;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #1a1a1a;
  transition: width 0.22s ease;
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: #000; }

@property --cta-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

@keyframes cta-border-spin {
  to { --cta-angle: 360deg; }
}

@keyframes cta-line-run {
  to { offset-distance: 100%; }
}

.nav-cta {
  color: #0a1628 !important;
  padding: 9px 20px;
  border: 2px solid rgba(0,168,255,0.12) !important;
  border-radius: 8px;
  font-size: 14px !important;
  font-weight: 600 !important;
  background: #ffffff !important;
  position: relative;
  overflow: visible;
  transition: color 0.2s !important;
}

.nav-cta::before, .nav-cta::after { display: none !important; }

.nav-cta:hover { color: var(--blue) !important; }

.nav-cta-glow-svg {
  position: absolute;
  top: -2px;
  left: -2px;
  overflow: visible;
  pointer-events: none;
}

#navbar.over-dark .nav-cta-glow-svg { display: none; }

.nav-links a.nav-active { color: #000; }
.nav-links a.nav-active::after { width: 100%; }

/* Language switcher — a single button: globe icon + the current language's
   own name ("English" / "Español"). Clicking flips to the other language. */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid rgba(10,22,40,0.14);
  border-radius: 999px;
  padding: 6px 12px;
  margin-right: 8px;
  background: transparent;
  color: #64748b;
  font-family: var(--font-d);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.lang-toggle-globe { width: 15px; height: 15px; flex-shrink: 0; }
.lang-toggle-label { line-height: 1; }
.lang-toggle:hover { color: #0a1628; border-color: rgba(10,22,40,0.3); }

#navbar.over-dark .lang-toggle { border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.8); }
#navbar.over-dark .lang-toggle:hover { color: #fff; border-color: rgba(255,255,255,0.55); }

.nav-hamburger span { background: #1a1a1a; }

/* over-dark: white text for #hero-generator section */
#navbar.over-dark .nav-links a { color: rgba(255,255,255,0.92); }
#navbar.over-dark .nav-links a::after { background: #fff; }
#navbar.over-dark .nav-links a:hover { color: #fff; }
#navbar.over-dark .nav-links a.nav-active { color: #fff; }
#navbar.over-dark .nav-hamburger span { background: rgba(255,255,255,0.85); }
#navbar.over-dark .nav-cta {
  color: rgba(255,255,255,0.92) !important;
  border: 2px solid transparent !important;
  background:
    linear-gradient(rgba(8,8,8,0.35), rgba(8,8,8,0.35)) padding-box,
    conic-gradient(from var(--cta-angle),
      #00A8FF 0deg,
      #00f0ff 45deg,
      rgba(255,255,255,0.12) 90deg,
      rgba(255,255,255,0.12) 315deg,
      #00A8FF 360deg
    ) border-box !important;
  animation: cta-border-spin 2.8s linear infinite !important;
}
#navbar.over-dark .nav-cta::before { display: none; }
#navbar.over-dark .nav-cta:hover {
  color: #ffffff !important;
  box-shadow: 0 0 16px rgba(0,168,255,0.45) !important;
}

/* scrolled inherits light defaults — no overrides needed */
#navbar.scrolled .nav-links a { color: #1a1a1a; }
#navbar.scrolled .nav-cta { color: #0a1628 !important; }

/* ---- Dropdown ---- */
.has-dropdown { position: relative; }

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-chevron {
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-top: 1px;
}

.has-dropdown.open .dropdown-chevron,
.has-dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 880px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.06);
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
}

.dropdown-panel--sm {
  width: 260px;
  padding: 6px;
}

/* bridge gap so mouse can reach panel without triggering mouseleave */
.dropdown-panel::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

.has-dropdown.open .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
}

.dropdown-col {
  padding: 4px 12px 4px 4px;
}

.dropdown-col--bordered {
  border-left: 1px solid var(--border);
  padding-left: 16px;
}

.dropdown-col-header {
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  padding: 4px 10px 8px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 14px;
  border-radius: 10px;
  transition: background 0.15s ease;
  color: var(--text);
}

.dropdown-item:hover {
  background: var(--bg-2);
}

.dropdown-item:hover .di-name { color: var(--blue); }

.di-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(0,168,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  transition: background 0.15s;
}

.dropdown-item:hover .di-icon { background: rgba(0,168,255,0.13); }

.dropdown-item--muted {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.di-soon {
  color: var(--blue) !important;
  font-style: italic;
}

.di-name {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.15s;
  line-height: 1.3;
}

.di-sub {
  font-size: 11.5px;
  color: var(--text-mute);
  margin-top: 2px;
  line-height: 1.3;
}

.dropdown-footer-link {
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding: 10px 14px 4px;
}

.dropdown-footer-link a {
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  transition: opacity 0.15s;
}

.dropdown-footer-link a:hover { opacity: 0.75; }

/* ---- End Dropdown ---- */

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: rgba(255,255,255,0.85);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.4s ease;
  transform-origin: center;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  inset: var(--nav-h) 0 auto 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  z-index: 99;
  padding: 32px 48px 48px;
  border-bottom: 1px solid var(--border);
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.mobile-menu.open { transform: translateY(0); }

.mobile-menu ul { display: flex; flex-direction: column; gap: 24px; }

.mobile-menu a {
  font-family: var(--font-d);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dim);
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--text); }


/* ============================================
   HERO — premium global B2B
   ============================================ */
/* ── Full-bleed hero — photo covers entire section, content sits on top ── */
#hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  background: #ffffff;
  overflow: hidden;
}

/* ── Left: content column, sits above the full-bleed photo ── */
.vh-left {
  position: relative;
  z-index: 2;
  width: 62%;
  min-height: 100svh;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: calc(var(--nav-h) + clamp(150px, 28vh, 260px)) clamp(24px, 3.2vw, 56px) clamp(44px, 6vh, 64px) clamp(32px, 4.5vw, 80px);
}

.vh-left-inner {
  /* text block — grows to fill, trust strip is at the bottom */
}

.vh-label {
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(0,168,255,0.80);
  margin-top: 16px;
  margin-bottom: 28px;
  opacity: 0;
}

.vh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-d);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0,168,255,0.08);
  border: 1px solid rgba(0,168,255,0.22);
  border-radius: 24px;
  padding: 6px 14px 6px 10px;
  margin-bottom: 30px;
  opacity: 0;
}

.vh-eyebrow-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.vh-h1 {
  margin-bottom: clamp(20px, 2.8vh, 32px);
  opacity: 0;
  line-height: 1;
}

.vh-h1-intro {
  display: block;
  font-family: 'Aspekta', sans-serif;
  font-weight: 300;
  font-size: clamp(26px, 3.1vw, 46px);
  letter-spacing: -0.01em;
  color: #0A1628;
  margin-bottom: 8px;
  line-height: 1.2;
}

.vh-h1-accent {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 4.8vw, 76px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #0A1628;
  white-space: nowrap;
  line-height: 1.05;
  perspective: 400px;
}

.flip-word {
  display: inline-block;
  transform-origin: center center;
}

.vh-sub {
  font-family: var(--font-d);
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(10,22,40,0.55);
  max-width: 460px;
  margin-bottom: clamp(28px, 3.8vh, 44px);
  opacity: 0;
}

/* ── CTA buttons ── */
.vh-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  opacity: 0;
}

.vh-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #ffffff;
  font-family: var(--font-d);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 24px rgba(0,168,255,0.55), 0 1px 6px rgba(0,168,255,0.3);
  letter-spacing: 0.01em;
}

.vh-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(0,168,255,0.70), 0 2px 10px rgba(0,168,255,0.4);
  background: #0099ee;
}

.vh-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0a1628;
  font-family: var(--font-d);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 10px;
  border: none;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.vh-btn-secondary:hover {
  background: #f0f4ff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.22);
  transform: translateY(-1px);
}

/* ── Trust strip at the bottom of left column ── */
.vh-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
  opacity: 0;
  padding-top: clamp(32px, 4.5vh, 52px);
  border-top: 1px solid rgba(0,0,0,0.07);
}

.vh-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  flex: 0 0 50%;
  padding-right: 20px;
}

.vh-t-icon {
  flex-shrink: 0;
  color: var(--blue);
  margin-top: 1px;
}

.vh-t-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vh-t-label {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 600;
  color: #0A1628;
  line-height: 1.3;
}

.vh-t-sub {
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 400;
  color: #8A96A3;
  line-height: 1.4;
}

/* ── Right: full-bleed photo behind everything ── */
.vh-right {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vh-photo {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  object-position: 100% center;
  display: block;
  z-index: 1;
  transform: translateX(12%) translateZ(0);
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: opacity;
}

.vh-photo.is-active {
  opacity: 1;
}


/* Slideshow dots */
.vh-dots {
  position: absolute;
  bottom: 32px;
  right: 48px;
  display: flex;
  gap: 9px;
  z-index: 10;
}

.vh-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.40);
  border: 1.5px solid rgba(255,255,255,0.70);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.vh-dot.is-active {
  background: #ffffff;
  transform: scale(1.25);
}

.vh-scrim {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    to right,
    rgba(255,255,255,1.00) 0%,
    rgba(255,255,255,1.00) 28%,
    rgba(255,255,255,0.80) 44%,
    rgba(255,255,255,0.30) 60%,
    rgba(255,255,255,0.05) 74%,
    transparent 84%
  );
  pointer-events: none;
}



/* ============================================
   HERO GENERATOR — original cinematic dark hero
   ============================================ */
#hero-generator {
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg, #080808 0%, #0d0d0d 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

/* Focal content fills remaining height after trust bar */
.hero-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 21px 24px 13px;
  min-height: 0;
}

/* Initial hidden state for entrance animation */
.hero-word,
.generator-img,
.hero-tagline,
.hero-gen-cta {
  opacity: 0;
}

/* POWER YOUR GROWTH */
.hero-word {
  font-family: var(--font-d);
  font-size: clamp(28px, 6vw, 88px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  z-index: 1;
  position: relative;
  pointer-events: none;
  user-select: none;
  text-shadow:
    0 0 8px rgba(255,255,255,0.9),
    0 0 20px rgba(255,255,255,0.6),
    0 0 40px rgba(0,168,255,0.7),
    0 0 80px rgba(0,168,255,0.45),
    0 0 140px rgba(0,168,255,0.25);
}

/* Generator — φ of the viewport width, Fibonacci overlap */
.hero-product {
  position: relative;
  z-index: 2;
  width: min(61.8vw, 760px);
  margin-top: -clamp(13px, 2vw, 34px);
  max-height: 50vh;
  flex-shrink: 1;
}

.generator-img {
  width: 100%;
  height: auto;
  max-height: 50vh;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 18px 48px rgba(0,0,0,0.11)) drop-shadow(0 6px 16px rgba(0,0,0,0.07));
}

.generator-ground {
  position: absolute;
  bottom: -10px;
  left: 10%;
  right: 10%;
  height: 21px;
  background: radial-gradient(ellipse at center, rgba(0,168,255,0.18) 0%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
}

/* Tagline — Fibonacci margin above, φ⁴ smaller than headline */
.hero-tagline {
  margin-top: 13px;
  font-family: 'Aspekta', sans-serif;
  font-size: clamp(14px, 1.3vw, 19px);
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  text-align: center;
  letter-spacing: 0.01em;
  max-width: 560px;
  white-space: nowrap;
}

/* CTA — Fibonacci margin, padding ratio 13:21 ≈ φ */
.hero-gen-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-family: var(--font-d);
  font-size: 15px;
  font-weight: 700;
  color: #5bc8ff;
  background: transparent;
  padding: 13px 21px;
  border-radius: 10px;
  border: 2px solid #5bc8ff;
  text-decoration: none;
  text-shadow: 0 0 10px rgba(91,200,255,0.8);
  box-shadow: 0 0 12px rgba(91,200,255,0.35), inset 0 0 12px rgba(91,200,255,0.06);
  transition: background 0.25s ease, box-shadow 0.25s ease, text-shadow 0.25s ease, transform 0.2s ease;
}

.hero-gen-cta:hover {
  background: rgba(0,168,255,0.10);
  box-shadow: 0 0 28px rgba(0,168,255,0.6), inset 0 0 16px rgba(0,168,255,0.12);
  text-shadow: 0 0 18px rgba(0,168,255,1);
  transform: translateY(-1px);
}

/* ── Trust bar — minor φ portion, Fibonacci padding ── */
.hero-trust-bar {
  width: 100%;
  max-width: 1100px;
  margin: 0;
  padding: 34px 55px 21px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.trust-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 6px 24px 6px 0;
}

.trust-icon {
  flex-shrink: 0;
  color: #7DD4FF;
  filter: drop-shadow(0 0 5px rgba(125,212,255,0.55));
}

.trust-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.trust-label {
  font-family: var(--font-d);
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 600;
  color: rgba(255,255,255,0.97);
  white-space: nowrap;
  letter-spacing: 0.01em;
  text-shadow: 0 0 10px rgba(125,212,255,0.45), 0 0 24px rgba(0,168,255,0.18);
}

.trust-sub {
  font-family: var(--font-b);
  font-size: clamp(11px, 0.95vw, 13px);
  color: rgba(255,255,255,0.62);
  white-space: nowrap;
  line-height: 1.4;
}

/* ── Scroll cue — natural flow, centered ── */
.hero-scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 0 24px;
}

.hero-scroll-cue span {
  font-family: var(--font-d);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

.scroll-line {
  width: 1px;
  height: 24px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: line-pulse 2.4s ease-in-out infinite;
}

@keyframes line-pulse {
  0%   { opacity: 0.2; transform: scaleY(0.6) translateY(-6px); }
  55%  { opacity: 0.8; transform: scaleY(1)   translateY(0); }
  100% { opacity: 0.2; transform: scaleY(0.6) translateY(6px); }
}

/* ============================================
   SOLUTIONS
   ============================================ */


/* ============================================
   SOLUTIONS — TESLA-STYLE SHOWCASE ROW
   ============================================ */
#solutions {
  background: #f4f4f4;
  padding: 52px clamp(20px, 3vw, 52px) 64px;
}

.solutions-header {
  text-align: center;
  margin-bottom: 32px;
}

.solutions-header .section-overline {
  margin-bottom: 8px;
}

.solutions-title {
  font-family: 'Aspekta', sans-serif;
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 700;
  color: #0080C8;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.solutions-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1400px;
  margin: 0 auto;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: clamp(400px, 46vw, 600px);
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

.showcase-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.showcase-card:hover .showcase-card-bg {
  transform: scale(1.05);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.80) 0%,
    rgba(0,0,0,0.28) 45%,
    rgba(0,0,0,0.04) 100%
  );
}

.showcase-cat {
  position: absolute;
  top: 22px;
  left: 24px;
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255,255,255,0.9), 0 0 20px rgba(255,255,255,0.5);
  z-index: 2;
}

.showcase-info {
  position: relative;
  z-index: 2;
  padding: 0 24px 28px;
}

.showcase-name {
  font-family: var(--font-d);
  font-size: clamp(22px, 2.2vw, 36px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}

.showcase-sub {
  font-family: var(--font-d);
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.4;
  margin-bottom: 18px;
}

.showcase-btns {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.sc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border-radius: 5px;
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.sc-btn--primary {
  background: var(--blue);
  color: #ffffff;
}

.sc-btn--ghost {
  background: rgba(255,255,255,0.14);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.24);
  backdrop-filter: blur(10px);
}

.sc-btn:hover { opacity: 0.82; }


/* ============================================
   PRODUCTS
   ============================================ */
/* ============================================
   VIDEO BANNER
   ============================================ */
#video-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vb-video-wrap {
  position: absolute;
  inset: 0;
}

.vb-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.25) 100%
  );
}

.vb-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.vb-overline {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  margin: 0;
}

.vb-title {
  font-family: var(--font-d);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.vb-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.75);
  background: transparent;
  text-decoration: none;
  margin-top: 4px;
  box-shadow: 0 0 18px rgba(255,255,255,0.55), 0 0 40px rgba(255,255,255,0.25), inset 0 0 12px rgba(255,255,255,0.08);
  text-shadow: 0 0 10px rgba(255,255,255,0.9), 0 0 24px rgba(255,255,255,0.6);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.vb-cta:hover {
  border-color: #ffffff;
  box-shadow: 0 0 28px rgba(255,255,255,0.8), 0 0 60px rgba(255,255,255,0.4), inset 0 0 18px rgba(255,255,255,0.12);
  text-shadow: 0 0 14px rgba(255,255,255,1), 0 0 32px rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

/* ============================================ */
#products {
  padding: 48px 0 52px;
  background: #f5f7fa;
}

#products .section-container {
  max-width: 100%;
  padding: 0 40px;
}

.products-section-header { display: none; }
.products-header-left { display: none; }

.products-header-stats {
  display: flex;
  gap: 28px;
  align-items: center;
}

.ph-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ph-stat-num {
  font-family: var(--font-d);
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 800;
  color: #0a1628;
  line-height: 1;
  letter-spacing: -0.02em;
}

.ph-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(0,0,0,0.12);
  flex-shrink: 0;
}

.ph-stat-label {
  font-size: 12px;
  color: #8896b0;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ── Products two-column layout ── */
.products-layout {
  display: flex;
  gap: 56px;
  align-items: flex-start;
}

.products-left {
  flex: 0 0 36%;
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.products-right {
  flex: 1;
  min-width: 0;
}

/* ── Animated Category List ── */
.cat-list-wrap {
  position: relative;
  margin-top: 32px;
  margin-bottom: 28px;
}

.cat-list {
  max-height: 520px;
  overflow-y: auto;
  padding: 10px 10px;
  scrollbar-width: none;
}

.cat-list::-webkit-scrollbar { display: none; }

.cat-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.06);
  background: #fff;
  text-decoration: none;
  color: var(--text);
  margin-bottom: 8px;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.15s, border-color 0.15s, box-shadow 0.15s;
  cursor: pointer;
}

.cat-list-item:last-child { margin-bottom: 0; }

.cat-list-item.in-view {
  opacity: 1;
  transform: scale(1);
}

.cat-list-item.selected,
.cat-list-item:hover {
  background: rgba(0,168,255,0.03);
  border-color: rgba(0,168,255,0.22);
  box-shadow: 0 2px 12px rgba(0,168,255,0.07);
}

.cat-list-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(0,168,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  transition: background 0.15s;
}

.cat-list-item.selected .cat-list-icon,
.cat-list-item:hover .cat-list-icon { background: rgba(0,168,255,0.13); }

.cat-list-text { flex: 1; min-width: 0; }

.cat-list-name {
  display: block;
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.cat-list-sub {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
  line-height: 1.4;
}

.cat-list-arrow {
  color: var(--text-dim);
  opacity: 0;
  flex-shrink: 0;
  transform: translateX(-6px);
  transition: opacity 0.15s, transform 0.15s, color 0.15s;
}

.cat-list-item.selected .cat-list-arrow,
.cat-list-item:hover .cat-list-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--blue);
}

.cat-list-badge {
  font-size: 11px;
  font-weight: 600;
  color: rgba(0,0,0,0.35);
  background: rgba(0,0,0,0.06);
  padding: 3px 8px;
  border-radius: 20px;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}

.cat-list-item--soon { opacity: 0.55 !important; }
.cat-list-item--soon.in-view { opacity: 0.55 !important; }
.cat-list-item--soon:hover { opacity: 0.75 !important; background: none; border-color: transparent; }

.cat-list-gradient-top { display: none; }


.cat-scroll-hint { display: none; }

.cat-scroll-arrow {
  animation: scroll-bounce 1.4s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(3px); }
}

.cat-scroll-hint.hidden { opacity: 0; }

/* ── (legacy) product grid kept for reference ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.product-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e4e8f0;
  position: relative;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  display: block;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(10,22,40,0.06);
  height: 118px;
}

.product-card:hover {
  border-color: rgba(0,168,255,0.35);
  box-shadow: 0 8px 28px rgba(10,22,40,0.10), 0 0 0 1px rgba(0,168,255,0.15);
}

/* Flip inner */
.pc-inner {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .pc-inner { transform: perspective(700px) rotateX(180deg); }

/* Front face */
.pc-front {
  position: absolute;
  inset: 0;
  padding: 16px 16px 14px;
  border-radius: 12px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.pc-front::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), #00f0ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 2px 2px 0 0;
}

.product-card:hover .pc-front::before { transform: scaleX(1); }

/* Back face */
.pc-back {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: rotateX(180deg);
  background-image: var(--pc-img);
  background-size: cover;
  background-position: center;
}

.pc-back-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,14,32,0.90) 0%, rgba(5,14,32,0.35) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px 14px;
}

.pc-back-name {
  font-family: var(--font-d);
  font-size: 12.5px;
  font-weight: 700;
  color: #ffffff;
  display: block;
  letter-spacing: 0.01em;
}

.pc-back-cta {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  display: block;
  margin-top: 3px;
}

.pc-count { display: none; }

.product-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(0,168,255,0.10);
  border: 1px solid rgba(0,168,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--blue);
  transition: background 0.25s, box-shadow 0.25s;
}

.product-card h4 {
  font-family: var(--font-d);
  font-size: 12.5px;
  font-weight: 600;
  color: #0a1628;
  margin-bottom: 3px;
  line-height: 1.3;
}

.product-card p {
  font-size: 11px;
  color: #6b7a99;
  line-height: 1.45;
}

.product-card-cta { display: none; }

.product-card--coming-soon {
  cursor: default;
  opacity: 0.6;
}

.product-card--coming-soon:hover .pc-inner { transform: none !important; }

.products-cta { text-align: left; }

.products-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #0a1628;
  text-decoration: none;
  padding: 11px 24px;
  border-radius: 8px;
  border: 1.5px solid #c8d0df;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(10,22,40,0.06), 0 0 14px rgba(255,255,255,0.7);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, color 0.2s ease;
}

.products-view-all:hover {
  border-color: var(--blue);
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,168,255,0.18), 0 0 0 1px rgba(0,168,255,0.12);
  color: var(--blue);
  transform: translateY(-1px);
}

/* Products section overrides (light bg) */
#products .section-overline { color: var(--blue); }
#products .section-title { color: #0a1628; }
#products .gradient-text { background: linear-gradient(90deg, var(--blue), #0055cc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }


/* ============================================
   DISTRIBUTORS
   ============================================ */
#distributors {
  overflow: hidden;
  padding: var(--pad) 0 calc(var(--pad) + 40px);
  background: var(--bg);
}

/* Hero headline block */
.dist-hero { text-align: center; margin-bottom: 48px; }

.dist-headline-logo {
  display: inline-block;
  height: clamp(52px, 6.5vw, 90px);
  width: auto;
  vertical-align: middle;
  margin-top: 0;
  filter: drop-shadow(0 0 8px rgba(255,255,255,1)) drop-shadow(0 0 20px rgba(255,255,255,0.9)) drop-shadow(0 0 50px rgba(255,255,255,0.6));
}

.dist-headline {
  font-size: clamp(28px, 4vw, 56px) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.03em !important;
  text-align: center !important;
  margin-bottom: 20px !important;
  white-space: nowrap !important;
}

.dist-headline-bold {
  font-weight: 900;
}

/* Two-column layout inside distributors section */
.dist-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 64px;
  align-items: start;
  margin-top: 48px;
}

.dist-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.dist-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -30px;
}

.dist-globe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  margin-top: 4px;
}

/* globe.gl mounts its own canvas — let it fill naturally */
.dist-globe-wrap canvas { display: block; }

/* Fade bottom + sides so the dome blends into the page */
.dist-globe-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to top, var(--bg) 0%, transparent 40%),
    radial-gradient(ellipse at -5% 50%, var(--bg) 0%, transparent 28%),
    radial-gradient(ellipse at 105% 50%, var(--bg) 0%, transparent 28%);
}

.dist-globe-subtitle {
  width: 100%;
  text-align: center;
  margin: 10px 0 0;
  padding: 0;
  font-size: clamp(20px, 2.2vw, 29px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: normal;
  color: var(--blue);
  text-shadow: 0 0 16px rgba(0,168,255,0.25);
}

.dist-tagline {
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--text-dim);
  line-height: 1.7;
}

/* Benefits checklist — single column in left panel */
.partner-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (max-width: 768px) {
  .dist-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .dist-right { order: -1; }
  .dist-globe-wrap { aspect-ratio: 2 / 1; }
}

.partner-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  color: var(--text-dim);
  white-space: nowrap;
}

.check { color: var(--blue); font-weight: 700; font-size: 14px; flex-shrink: 0; }

/* CTA */
.dist-cta-wrap {
  text-align: center;
  margin-top: 16px;
}

/* Glow button for distributors */
.btn-glow {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 10px;
  border: 1.5px solid var(--blue);
  background: rgba(0,168,255,0.05);
  color: var(--blue);
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(0,168,255,0.22), 0 0 6px rgba(0,168,255,0.12);
  transition: box-shadow 0.3s ease, background 0.3s ease, transform 0.2s ease;
}

.btn-glow:hover {
  background: rgba(0,168,255,0.10);
  box-shadow: 0 0 32px rgba(0,168,255,0.38), 0 0 12px rgba(0,168,255,0.22);
  transform: translateY(-1px);
}

/* Featured distributor — full-width centered row below both columns */
/* Featured distributor — standalone section */
#featured-distributor {
  background: #080f1c;
  padding: 28px 0 24px;
  border-top: none;
}

.fd-inner {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.fd-label {
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
  margin-bottom: 20px;
}

.fd-logo-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: -12px;
  margin-bottom: 4px;
}

.fd-logo-wrap::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 90px;
  background: radial-gradient(ellipse, rgba(0,168,255,0.22) 0%, transparent 70%);
  filter: blur(24px);
  pointer-events: none;
}

.fd-sycom-logo {
  position: relative;
  height: 110px;
  width: auto;
  max-width: 330px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.5)) drop-shadow(0 0 28px rgba(0,168,255,0.4));
}

.fd-bottom-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: -16px;
}

.fd-divider { display: none; }

.fd-location {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
}

.fd-flag { font-size: 15px; line-height: 1; }

.fd-stat {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.fd-stat-num {
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.fd-stat-lbl {
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.dist-label {
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 18px;
}

.distributor-card {
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.dist-top-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.dist-body { padding: 22px 28px 26px; }

.dist-body h3 {
  font-family: 'Aspekta', sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 8px;
}

.dist-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 16px;
}

.dist-body--partner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 36px;
}

.dist-sycom-logo {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  flex-shrink: 0;
}

.dist-body--partner .dist-location {
  margin-bottom: 0;
}

.dist-stats {
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.dstat {
  padding: 20px 32px;
  text-align: center;
}

.dstat-num {
  display: block;
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
}

.dstat-lbl {
  display: block;
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 5px;
}

/* Brand manifesto sub-section */
.about-manifesto-wrap {
  position: relative;
  overflow: hidden;
  background: #060d1a;
  margin-top: var(--pad);
}


/* ============================================
   ABOUT
   ============================================ */
/* ============================================
   ABOUT — full-width dark manifesto
   ============================================ */
#about {
  position: relative;
  background: #060d1a;
  overflow: hidden;
}

.about-manifesto-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(0,168,255,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 80% 85%, rgba(0,168,255,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.about-manifesto-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.about-manifesto-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 130px) clamp(24px, 5vw, 48px) clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 48px;
}

.about-overline {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
}

.about-statement {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}

.about-headline {
  font-family: 'Aspekta', 'Space Grotesk', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}

.about-body-text {
  font-family: 'Aspekta', 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.7vw, 22px);
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.78);
  margin: 0;
}

.about-em {
  font-style: normal;
  color: var(--blue);
  font-weight: 700;
  position: relative;
  display: inline-block;
  white-space: nowrap;
  text-shadow: 0 0 20px rgba(0,168,255,0.35);
  overflow: visible;
}

.about-em-canvas {
  position: absolute;
  display: block;
  pointer-events: none;
  overflow: visible;
}

/* word-by-word reveal tokens */
.about-word {
  display: inline-block;
  opacity: 0.12;
  transition: none;
}

.about-word.is-lit {
  opacity: 1;
}

.about-rule {
  width: 48px;
  height: 1px;
  background: rgba(0,168,255,0.5);
  flex-shrink: 0;
}

.about-logo-wrap { display: flex; justify-content: center; }

.about-manifesto-logo {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
  animation: about-logo-glow 4s ease-in-out infinite;
}

@keyframes about-logo-glow {
  0%, 100% { filter: drop-shadow(0 0 16px rgba(0,168,255,0.2)); }
  50%       { filter: drop-shadow(0 0 40px rgba(0,168,255,0.55)); }
}

.about-stats-row {
  display: flex;
  align-items: center;
  gap: 48px;
}

.about-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.about-stat-num-wrap {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
}

.about-stats-row .stat-num {
  font-family: var(--font-d);
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: inline-block;
}

.about-stats-row .stat-plus {
  font-family: var(--font-d);
  font-size: 24px;
  font-weight: 700;
  color: var(--blue);
  margin-top: 5px;
  display: inline-block;
}

.about-stats-row .stat-lbl {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  display: block;
}

.about-stats-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.about-cta { display: flex; justify-content: center; }

.about-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--blue);
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 24px rgba(0,168,255,0.3);
}

.about-btn:hover {
  background: #0096e6;
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0,168,255,0.5);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.stat-cell {
  background: var(--bg-card);
  padding: 44px 32px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-d);
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  color: #0a0a0a;
  display: inline-block;
}

.stat-plus {
  font-family: var(--font-d);
  font-size: 28px;
  font-weight: 700;
  display: inline-block;
  vertical-align: top;
  margin-top: 6px;
  margin-left: 1px;
  color: var(--blue);
}

.stat-lbl {
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 10px;
  display: block;
}


/* ============================================
   CONTACT
   ============================================ */
#contact {
  padding: var(--pad) 0;
  background: var(--bg);
  text-align: center;
}

.contact-glow { display: none; }

.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* ============================================
   FOOTER — dark for contrast
   ============================================ */
#footer {
  background: #1d1d1f;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding: 52px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.footer-tagline {
  font-family: var(--font-d);
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-col h5 {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 14px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col ul li a {
  font-family: var(--font-d);
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  text-decoration: none;
  transition: color 0.18s;
}

.footer-col ul li a:hover { color: rgba(255,255,255,0.85); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-family: var(--font-d);
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  margin: 0;
}

.footer-sub { color: rgba(255,255,255,0.22) !important; }

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px);
}

/* Crawlable "what we sell / where" copy at the very bottom of the footer,
   below the nav bar. Kept visually quiet — it is real text for readers and
   search engines, not a design element, so it sits at low contrast and small
   type, with a hairline separating it from the bar above. */
.footer-seo {
  max-width: 780px;
  margin: 0 auto;
  padding: 26px 0 34px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-seo-title {
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.55);
  margin: 0 0 10px;
}

.footer-seo-text {
  font-family: var(--font-d);
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 22px 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.footer-copy {
  font-family: var(--font-d);
  font-size: 13px;
  color: rgba(255,255,255,0.28);
  white-space: nowrap;
  padding-right: 12px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.footer-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 0;
}

.footer-nav a {
  font-family: var(--font-d);
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  padding: 0 14px;
  border-right: 1px solid rgba(255,255,255,0.1);
  line-height: 1;
  transition: color 0.18s;
  white-space: nowrap;
}

.footer-nav a:last-child { border-right: none; }
.footer-nav a:hover { color: rgba(255,255,255,0.85); }


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  :root { --pad: 64px; }
  .products-grid { grid-template-columns: repeat(5, 1fr); gap: 10px; }
  .distributors-layout { grid-template-columns: 1fr; gap: 56px; }
  .about-manifesto-inner { gap: 36px; }
  .about-stats-row { gap: 32px; }
  .footer-bar { gap: 16px; flex-wrap: wrap; }
  .footer-seo { padding: 22px 0 28px; }
}

@media (max-width: 860px) {
  .solutions-showcase { grid-template-columns: 1fr 1fr; gap: 10px; }
  .showcase-card { height: clamp(320px, 44vw, 480px); }
  .solutions-showcase .showcase-card:last-child { grid-column: 1 / -1; height: clamp(280px, 38vw, 400px); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --pad: 48px; --nav-h: 62px; }

  .section-container { padding: 0 24px; }
  .nav-container { padding: 0 24px; grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: block; padding: 32px 24px 48px; }

  #hero { display: flex; flex-direction: column; min-height: auto; }
  .vh-left { width: 100%; min-height: auto; order: 2; padding: 40px 24px 48px; justify-content: flex-start; gap: 32px; overflow: hidden; }
  .vh-right { position: relative; inset: auto; order: 1; width: 100%; height: 56vw; min-height: 280px; max-height: 380px; }
  .vh-photo { object-position: center top; }
  .vh-scrim {
    background: linear-gradient(to bottom, transparent 30%, rgba(255,255,255,0.80) 70%, #ffffff 100%);
  }
  .vh-trust { padding-top: 28px; }

  .hero-center { padding: 32px 20px 24px; }
  .hero-word { font-size: clamp(18px, 7.5vw, 56px); white-space: normal; }
  .hero-product { width: 86%; margin-top: -4vw; }
  .hero-tagline { font-size: 15px; max-width: 88%; white-space: normal; }

  /* Trust bar — 2×2 on mobile */
  .hero-trust-bar { flex-wrap: wrap; padding: 16px 24px; }
  .trust-item { flex: 0 0 50%; padding: 10px 12px; }
  .trust-item:nth-child(odd)  { padding-left: 0; }
  .trust-item:nth-child(even) { padding-right: 0; }
  .trust-label { white-space: normal; }
  .trust-sub   { white-space: normal; }

  /* Product catalogue — stack the two columns instead of squishing */
  .products-layout { flex-direction: column; gap: 32px; }
  .products-left { flex: 0 0 auto; width: 100%; position: static; top: auto; }
  .products-right { width: 100%; }
  #products .section-container { padding: 0 24px; }

  /* Distributor headline + benefits — allow wrapping so nothing clips */
  .dist-headline { white-space: normal !important; }
  .dist-headline-logo { height: clamp(34px, 8vw, 52px); }
  .partner-benefits li { white-space: normal; }

  .solutions-showcase { grid-template-columns: 1fr; gap: 12px; }
  .solutions-showcase .showcase-card:last-child { grid-column: auto; }
  .showcase-card { height: clamp(300px, 72vw, 440px); border-radius: 6px; }
  .showcase-info { padding: 0 20px 24px; }
  .showcase-name { font-size: clamp(20px, 5.5vw, 32px); }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-cell { padding: 32px 20px; }
  .stat-num { font-size: 40px; }

  .footer-nav a { font-size: 12px; padding: 0 10px; }
}

@media (max-width: 480px) {
  .vh-ctas { flex-direction: column; align-items: stretch; }
  .vh-btn-primary, .vh-btn-secondary { justify-content: center; }
  .vh-trust-item { flex: 0 0 50%; }

  .hero-word { font-size: clamp(14px, 5vw, 44px); }
  .hero-product { width: 96%; margin-top: -4vw; }
  .products-grid { gap: 10px; }
  .product-card { padding: 22px 18px; }
  .footer-nav { gap: 2px 0; }
}


/* ============================================
   PRODUCTS PAGE (products.html)
   ============================================ */

.products-page body { background: var(--bg-2); }

/* Category Hero */
.cat-hero {
  padding: calc(var(--nav-h) + 56px) 0 56px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.cat-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mute);
  margin-bottom: 28px;
}

.breadcrumb a { color: var(--text-mute); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { color: var(--text-dim); }

.cat-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cat-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(0,168,255,0.08);
  border: 1px solid rgba(0,168,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
}

.cat-title {
  font-family: 'Aspekta', sans-serif;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: -0.025em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 12px;
}

.cat-desc {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 560px;
  line-height: 1.7;
}

.cat-count {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mute);
  white-space: nowrap;
  padding-bottom: 6px;
}

.cat-count strong {
  color: var(--text);
  font-weight: 600;
}

/* Category switcher bar */
.cat-switcher {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
}

.cat-switcher-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cat-switcher-inner::-webkit-scrollbar { display: none; }

.cat-tab {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  padding: 14px 16px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  cursor: pointer;
  text-decoration: none;
  display: block;
  margin-bottom: -1px;
}

.cat-tab:hover { color: var(--text); }
.cat-tab.active { color: var(--blue); border-bottom-color: var(--blue); }

/* Product display grid */
.products-display {
  padding: 56px 0 100px;
}

.products-display .section-container {
  max-width: 1200px;
}

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

/* Product display card */
.pd-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
}

.pd-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.pd-card-visual {
  height: 180px;
  background: linear-gradient(135deg, rgba(0,168,255,0.06) 0%, rgba(0,255,148,0.06) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pd-card-visual svg { opacity: 0.35; }

.pd-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-d);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
}

.pd-tag--popular {
  background: rgba(0,168,255,0.1);
  color: var(--blue);
  border: 1px solid rgba(0,168,255,0.25);
}

.pd-tag--new {
  background: rgba(0,255,148,0.1);
  color: #00b368;
  border: 1px solid rgba(0,255,148,0.35);
}

.pd-tag--industrial {
  background: rgba(100,100,100,0.08);
  color: #555;
  border: 1px solid rgba(0,0,0,0.1);
}

.pd-card-body {
  padding: 24px 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pd-model {
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 8px;
}

.pd-name {
  font-family: 'Aspekta', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.3;
}

.pd-desc {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.pd-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.pd-spec {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-dim);
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 4px 9px;
  border-radius: 4px;
}

.pd-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  transition: gap 0.2s ease;
}

.pd-cta:hover { gap: 10px; }

/* Contact strip */
.products-cta-strip {
  background: var(--text);
  padding: 64px 0;
  text-align: center;
}

.products-cta-strip h2 {
  font-family: 'Aspekta', sans-serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 300;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.products-cta-strip p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
}

.products-cta-strip .btn-ghost {
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}

.products-cta-strip .btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.strip-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive — products page */
@media (max-width: 900px) {
  .pd-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .cat-hero-inner, .cat-switcher-inner { padding: 0 24px; }
  .products-display .section-container { padding: 0 24px; }
  .cat-header { flex-direction: column; align-items: flex-start; }
  .cat-count { padding-bottom: 0; }
}

@media (max-width: 560px) {
  .pd-grid { grid-template-columns: 1fr; }
}


/* ============================================
   PRODUCT LISTING PAGE — .pl-* (products.html live catalog)
   ============================================ */

.pl-page {
  padding-top: var(--nav-h);
  min-height: 100vh;
  background: var(--bg-2);
}

/* Page header / category banner */
.pl-header {
  position: relative;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 64px 0 56px;
  overflow: hidden;
  transition: background 0.45s ease;
}

/* Animated gradient background layer (hidden by default) */
.pl-header-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(135deg, #0a1628 0%, #0f2040 45%, #001a33 100%);
  transition: opacity 0.45s ease;
}

/* When a category is active, reveal the banner style */
.pl-header.pl-header--category {
  border-bottom: none;
}

.pl-header.pl-header--category .pl-header-bg {
  opacity: 1;
}


.pl-header-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 64px);
}

.pl-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mute);
  margin-bottom: 20px;
  transition: color 0.35s ease;
}

.pl-header.pl-header--category .pl-breadcrumb { color: rgba(255,255,255,0.45); }
.pl-header.pl-header--category .pl-breadcrumb a { color: rgba(255,255,255,0.45); }
.pl-header.pl-header--category .pl-breadcrumb a:hover { color: rgba(255,255,255,0.8); }


.pl-breadcrumb a { color: var(--text-mute); transition: color 0.2s; }
.pl-breadcrumb a:hover { color: var(--blue); }
.pl-breadcrumb svg { opacity: 0.5; }

/* Category icon shown in banner */
.pl-banner-icon {
  display: none;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--blue);
}

.pl-header.pl-header--category .pl-banner-icon {
  display: flex;
}

.pl-title {
  font-family: 'Aspekta', sans-serif;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.025em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 10px;
  transition: color 0.35s ease, font-size 0.35s ease;
}

.pl-header.pl-header--category .pl-title {
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
}

/* Light-bg overrides — must come after --category rules to win specificity */
.pl-header.pl-header--category.pl-header--light-bg .pl-title { color: #0a1628; }
.pl-header.pl-header--category.pl-header--light-bg .pl-cat-tag { color: rgba(0,0,0,0.6); }
.pl-header.pl-header--category.pl-header--light-bg .pl-breadcrumb { color: rgba(0,0,0,0.45); }
.pl-header.pl-header--category.pl-header--light-bg .pl-breadcrumb a { color: rgba(0,0,0,0.45); }
.pl-header.pl-header--category.pl-header--light-bg .pl-breadcrumb a:hover { color: #0a1628; }
.pl-header.pl-header--category.pl-header--light-bg .pl-header-bg { background: #f4f6f9; }

.pl-subtitle {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
  transition: color 0.35s ease;
}

.pl-header.pl-header--category .pl-subtitle {
  display: none;
}

/* Category tagline — shown only in banner mode */
.pl-cat-tag {
  display: none;
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-top: 10px;
  max-width: 480px;
}

.pl-header.pl-header--category .pl-cat-tag {
  display: block;
}

/* Filter pills */
.pl-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px clamp(24px, 4vw, 64px) 96px;
}

.pl-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.pl-filter {
  font-family: var(--font-d);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-dim);
  background: #fff;
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 100px;
  cursor: pointer;
  transition: color 0.18s, border-color 0.18s, background 0.18s, box-shadow 0.18s;
  white-space: nowrap;
}

.pl-filter:hover {
  color: var(--text);
  border-color: #c0c9d4;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

.pl-filter.is-active {
  color: var(--blue);
  background: rgba(0,168,255,0.07);
  border-color: rgba(0,168,255,0.3);
}

/* Meta row */
.pl-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.pl-count {
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mute);
}

/* Product grid */
.pl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* Product card */
.pl-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
}

.pl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.11);
  border-color: rgba(0,168,255,0.25);
}

.pl-card-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f6f8fa;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}

.pl-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.3s ease;
}

.pl-card:hover .pl-card-img {
  transform: scale(1.03);
}

.pl-card-no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8edf3 100%);
}

.pl-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.pl-card-cat {
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  opacity: 0.85;
}

.pl-card-name {
  font-family: var(--font-d);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.pl-card-cta {
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  margin-top: 4px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.pl-card:hover .pl-card-cta {
  opacity: 1;
  transform: translateX(0);
}

/* Empty state */
.pl-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 80px 24px;
  color: var(--text-dim);
  font-size: 15px;
}

/* Responsive */
@media (max-width: 1024px) {
  .pl-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
  .pl-grid { grid-template-columns: repeat(2, 1fr); }
  .pl-filters { gap: 6px; }
  .pl-filter { font-size: 12px; padding: 6px 12px; }
}

@media (max-width: 440px) {
  .pl-grid { grid-template-columns: 1fr; }
}

/* Banner responsive — keep text readable at all widths */
@media (max-width: 900px) {
  .pl-header { padding: 48px 0 40px; }
  .pl-title { font-size: clamp(28px, 5vw, 42px); }
}

@media (max-width: 640px) {
  .pl-header { padding: 40px 0 32px; }
  .pl-header-bg { background-size: cover !important; background-position: center !important; }
  .pl-title { font-size: clamp(24px, 7vw, 36px); }
  .pl-subtitle { font-size: 13px; }
}


/* ============================================
   CONTACT WIDGET — floating bottom-right
   ============================================ */

.cw-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.cw-wrap.cw-visible {
  opacity: 1;
  pointer-events: all;
}

/* ── Trigger button ── */
.cw-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #2F6BFF;
  color: #ffffff;
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 22px 14px 18px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(47,107,255,0.40), 0 1px 4px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.cw-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(47,107,255,0.50), 0 2px 6px rgba(0,0,0,0.14);
  background: #1a5aee;
}

.cw-trigger-label { line-height: 1; }

/* Two icons: chat shows by default, X shows when open */
.cw-trigger-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cw-icon-x {
  display: none;
  opacity: 0;
  transform: rotate(-90deg);
}

.cw-wrap.is-open .cw-icon-chat {
  display: none;
  opacity: 0;
}

.cw-wrap.is-open .cw-icon-x {
  display: flex;
  opacity: 1;
  transform: rotate(0deg);
}

/* ── Chat box ── */
.cw-box {
  width: 320px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow:
    0 8px 40px rgba(10,37,64,0.14),
    0 2px 8px rgba(10,37,64,0.06);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.34, 1.36, 0.64, 1);
  pointer-events: none;
}

.cw-wrap.is-open .cw-box {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* ── Box header ── */
.cw-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 14px;
  background: linear-gradient(135deg, #0A2540 0%, #1a3a5c 100%);
}

.cw-header-left {
  display: flex;
  align-items: center;
  gap: 11px;
}

.cw-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #0a1e3a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cw-title {
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}

.cw-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-d);
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}

.cw-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22C55E;
  flex-shrink: 0;
}

.cw-close {
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 8px;
  color: rgba(255,255,255,0.75);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  flex-shrink: 0;
}

.cw-close:hover {
  background: rgba(255,255,255,0.22);
  color: #ffffff;
}

/* ── Box body ── */
.cw-body {
  padding: 16px 14px 18px;
}

.cw-prompt {
  font-family: var(--font-d);
  font-size: 12.5px;
  font-weight: 500;
  color: #6B7280;
  margin-bottom: 12px;
  padding: 0 2px;
}

/* ── Contact option rows ── */
.cw-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cw-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 13px;
  border-radius: 12px;
  border: 1.5px solid rgba(10,37,64,0.08);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  background: #ffffff;
}

.cw-option:hover {
  background: #F4F8FF;
  border-color: #2F6BFF;
  transform: translateX(2px);
}

.cw-option-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cw-icon-phone   { background: #EFF6FF; color: #2F6BFF; }
.cw-icon-email   { background: #F0FDF4; color: #16A34A; }
.cw-icon-whatsapp { background: #F0FDF4; color: #15803D; }

.cw-option-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.cw-option-label {
  font-family: var(--font-d);
  font-size: 13.5px;
  font-weight: 600;
  color: #0A2540;
  line-height: 1.2;
}

.cw-option-sub {
  font-family: var(--font-d);
  font-size: 11.5px;
  font-weight: 400;
  color: #6B7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cw-arrow {
  color: #CBD5E1;
  flex-shrink: 0;
  transition: color 0.15s ease, transform 0.15s ease;
}

.cw-option:hover .cw-arrow {
  color: #2F6BFF;
  transform: translateX(2px);
}

@media (max-width: 480px) {
  .cw-wrap { bottom: 18px; right: 16px; }
  .cw-box  { width: calc(100vw - 32px); }
}

/* ── Multi-view structure ── */
.cw-box {
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 100px);
}

.cw-view {
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(10,37,64,0.12) transparent;
  flex: 1;
}

.cw-view--hidden { display: none; }

/* ── Form view body ── */
.cw-body--form {
  padding: 14px 14px 18px;
}

/* Back nav + method badge */
.cw-form-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.cw-back {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 600;
  color: #6B7280;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  transition: color 0.15s ease;
}

.cw-back:hover { color: #2F6BFF; }

.cw-method-tag {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 600;
  color: #2F6BFF;
  background: #EFF6FF;
  border-radius: 20px;
  padding: 3px 10px;
}

/* ── Form fields ── */
.cw-form { display: flex; flex-direction: column; gap: 10px; }

.cw-field { display: flex; flex-direction: column; gap: 4px; }

.cw-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.cw-label {
  font-family: var(--font-d);
  font-size: 11.5px;
  font-weight: 600;
  color: #0A2540;
}

.cw-req { color: #2F6BFF; }

.cw-input {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 400;
  color: #0A2540;
  background: #F8FAFF;
  border: 1.5px solid rgba(10,37,64,0.1);
  border-radius: 8px;
  padding: 9px 11px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  width: 100%;
  box-sizing: border-box;
}

.cw-input::placeholder { color: #9CA3AF; }

.cw-input:focus {
  border-color: #2F6BFF;
  box-shadow: 0 0 0 3px rgba(47,107,255,0.10);
  background: #fff;
}

.cw-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}

.cw-textarea {
  resize: vertical;
  min-height: 74px;
  line-height: 1.5;
}

/* ── Error message ── */
.cw-error {
  font-family: var(--font-d);
  font-size: 12px;
  color: #DC2626;
  min-height: 16px;
  margin-top: -4px;
}

/* ── Submit button ── */
.cw-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #2F6BFF;
  color: #fff;
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 600;
  padding: 13px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 3px 12px rgba(47,107,255,0.28);
  margin-top: 2px;
}

.cw-submit:hover {
  background: #1a5aee;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(47,107,255,0.36);
}

.cw-submit-spinner {
  display: none;
  animation: cw-spin 0.7s linear infinite;
  flex-shrink: 0;
}

.cw-submit.is-loading .cw-submit-label { opacity: 0.7; }
.cw-submit.is-loading .cw-submit-spinner { display: block; }
.cw-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

@keyframes cw-spin { to { transform: rotate(360deg); } }

.cw-form-note {
  font-family: var(--font-d);
  font-size: 11px;
  color: #9CA3AF;
  text-align: center;
  margin-top: 2px;
}

/* ── Success view ── */
.cw-body--success {
  padding: 28px 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.cw-success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #F0FDF4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.cw-success-title {
  font-family: var(--font-d);
  font-size: 17px;
  font-weight: 700;
  color: #0A2540;
}

.cw-success-text {
  font-family: var(--font-d);
  font-size: 13px;
  color: #6B7280;
  line-height: 1.6;
  max-width: 240px;
}

.cw-success-new {
  margin-top: 8px;
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 600;
  color: #2F6BFF;
  background: #EFF6FF;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.cw-success-new:hover { background: #DBEAFE; }


/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */

.product-page { background: #F8FAFF; }

/* ── Page shell ── */
.pd-page {
  min-height: 100vh;
  padding-top: var(--nav-h);
}

/* ── Loading ── */
.pd-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 60vh;
  color: #6B7280;
  font-family: var(--font-d);
  font-size: 14px;
}

.pd-spinner {
  width: 36px;
  height: 36px;
  border: 2.5px solid rgba(47,107,255,0.15);
  border-top-color: #2F6BFF;
  border-radius: 50%;
  animation: pd-spin 0.75s linear infinite;
}

@keyframes pd-spin { to { transform: rotate(360deg); } }

/* ── Error ── */
.pd-error {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 60vh;
  text-align: center;
  padding: 40px 24px;
}

.pd-error h2 {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 700;
  color: #0A2540;
}

.pd-error p {
  font-family: var(--font-d);
  font-size: 15px;
  color: #6B7280;
}

.pd-error-link {
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 600;
  color: #2F6BFF;
  text-decoration: none;
  margin-top: 8px;
}

/* ── Content wrapper ── */
.pd-content { display: none; }

.pd-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px) 80px;
}

/* ── Breadcrumb ── */
.pd-breadcrumb-bar {
  background: #ffffff;
  border-bottom: 1px solid rgba(10,37,64,0.07);
}

.pd-breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 13px clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-d);
  font-size: 13px;
  color: #6B7280;
  flex-wrap: wrap;
}

.pd-breadcrumb a {
  color: #6B7280;
  text-decoration: none;
  transition: color 0.15s ease;
}

.pd-breadcrumb a:hover { color: #2F6BFF; }

.pd-breadcrumb span:last-child {
  color: #0A2540;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 320px;
}

/* ── Main 2-col grid ── */
.pd-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  padding: clamp(32px, 5vh, 56px) 0 clamp(40px, 6vh, 64px);
}

/* ── Gallery ── */
.pd-gallery { position: sticky; top: calc(var(--nav-h) + 20px); }

.pd-main-img-wrap {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(10,37,64,0.07);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(10,37,64,0.06);
}

.pd-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.pd-no-img::after {
  content: 'No image available';
  font-family: var(--font-d);
  font-size: 13px;
  color: #9CA3AF;
}

.pd-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.pd-thumb {
  width: 68px;
  height: 68px;
  border-radius: 10px;
  border: 2px solid transparent;
  background: #ffffff;
  overflow: hidden;
  cursor: pointer;
  padding: 4px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(10,37,64,0.08);
}

.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pd-thumb.is-active { border-color: #2F6BFF; box-shadow: 0 0 0 3px rgba(47,107,255,0.15); }
.pd-thumb:hover:not(.is-active) { border-color: rgba(47,107,255,0.4); }

/* ── Product info ── */
.pd-info { display: flex; flex-direction: column; gap: 0; }

.pd-cat-badge {
  display: inline-block;
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2F6BFF;
  background: #EFF6FF;
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 14px;
  align-self: flex-start;
}

.pd-name {
  font-family: var(--font-d);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 700;
  color: #0A2540;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.pd-brand {
  font-family: var(--font-d);
  font-size: 13.5px;
  color: #6B7280;
  margin-bottom: 16px;
}

.pd-brand-label {
  font-weight: 600;
  color: #0A2540;
  margin-right: 6px;
}

.pd-short-desc {
  font-family: var(--font-d);
  font-size: 15px;
  line-height: 1.65;
  color: #4B5563;
  margin-bottom: 24px;
}

.pd-short-desc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pd-short-desc-list li {
  position: relative;
  padding-left: 16px;
}

.pd-short-desc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4A90D9;
}

/* ── CTA buttons ── */
.pd-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.pd-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2F6BFF;
  color: #fff;
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 4px 14px rgba(47,107,255,0.28);
}

.pd-btn-primary:hover {
  background: #1a5aee;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(47,107,255,0.38);
}

.pd-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0A2540;
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 10px;
  border: 1.5px solid rgba(10,37,64,0.18);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.pd-btn-secondary:hover {
  background: rgba(47,107,255,0.05);
  border-color: #2F6BFF;
  color: #2F6BFF;
}

/* ── Meta row ── */
.pd-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(10,37,64,0.07);
}

.pd-meta-item {
  font-family: var(--font-d);
  font-size: 12.5px;
  color: #6B7280;
}

.pd-meta-key {
  font-weight: 600;
  color: #0A2540;
  margin-right: 5px;
}

/* ── Warranty & tech sheet badges ── */
/* Category features strip */
.pd-cat-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-top: 20px;
  padding: 18px 20px;
  background: #F8FAFF;
  border: 1px solid rgba(47,107,255,0.1);
  border-radius: 10px;
}

.pd-cat-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 500;
  color: #1d1d1f;
}

.pd-cat-feature svg {
  flex-shrink: 0;
  color: #2F6BFF;
}

/* Warranty duration pill */
.pd-warranty-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 600;
  color: #0A8044;
  background: rgba(0, 180, 80, 0.08);
  border: 1px solid rgba(0, 180, 80, 0.22);
  padding: 5px 12px;
  border-radius: 100px;
  margin-top: 16px;
}

/* Downloads row */
.pd-downloads {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(10,37,64,0.07);
}

.pd-downloads-label {
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6B7280;
  white-space: nowrap;
}

.pd-downloads-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Shared download button base */
.pd-dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s, border-color 0.18s, box-shadow 0.18s, transform 0.15s;
}

.pd-dl-btn:hover  { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,0,0,0.13); }
.pd-dl-btn:active { transform: translateY(0); }

/* Technical Data Sheet — solid blue */
.pd-dl-btn--primary {
  color: #fff;
  background: #2F6BFF;
  border: 1.5px solid #2F6BFF;
}
.pd-dl-btn--primary:hover { background: #1a58f0; border-color: #1a58f0; }

/* Warranty Terms — outlined */
.pd-dl-btn--secondary {
  color: #374151;
  background: #fff;
  border: 1.5px solid #D1D5DB;
}
.pd-dl-btn--secondary:hover { border-color: #9CA3AF; background: #F9FAFB; }

/* ── Section headers ── */
.pd-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(10,37,64,0.08);
}

.pd-section-header h2 {
  font-family: var(--font-d);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: #0A2540;
}

.pd-see-all {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 600;
  color: #2F6BFF;
  text-decoration: none;
  white-space: nowrap;
}

.pd-see-all:hover { text-decoration: underline; }

/* ── Description ── */
.pd-description-section {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(10,37,64,0.07);
  padding: clamp(24px, 3vw, 40px);
  margin-bottom: 56px;
  box-shadow: 0 2px 12px rgba(10,37,64,0.04);
}

.pd-description {
  font-family: var(--font-d);
  font-size: 14.5px;
  line-height: 1.75;
  color: #374151;
}

/* Spec sections parsed from description */
.pd-spec-section {
  margin-bottom: 24px;
}
.pd-spec-section:last-child { margin-bottom: 0; }

.pd-spec-header {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(0,168,255,0.15);
}

.pd-spec-table {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(10,37,64,0.08);
  border-radius: 10px;
  overflow: hidden;
}

.pd-spec-row {
  display: flex;
  border-bottom: 1px solid rgba(10,37,64,0.06);
}
.pd-spec-row:last-child { border-bottom: none; }

.pd-spec-key {
  flex: 0 0 42%;
  padding: 9px 14px;
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  background: #F8FAFC;
  border-right: 1px solid rgba(10,37,64,0.06);
  line-height: 1.4;
}
.pd-spec-val {
  flex: 1;
  padding: 9px 14px;
  font-family: var(--font-d);
  font-size: 13px;
  color: #0A2540;
  background: #ffffff;
  line-height: 1.4;
}

/* Full-width rows (no colon separator) */
.pd-spec-row--full { display: block; }
.pd-spec-note {
  display: block;
  padding: 9px 14px;
  font-family: var(--font-d);
  font-size: 13px;
  color: #6B7280;
  background: #F8FAFC;
}

/* ── Related products ── */
.pd-related-section { margin-bottom: 40px; }

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

.pd-rel-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(10,37,64,0.07);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(10,37,64,0.05);
}

.pd-rel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(10,37,64,0.10);
}

.pd-rel-img-wrap {
  aspect-ratio: 1 / 1;
  background: #F4F8FF;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pd-rel-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.25s ease;
}

.pd-rel-card:hover .pd-rel-img-wrap img { transform: scale(1.04); }

.pd-rel-no-img {
  width: 100%;
  height: 100%;
  background: #E8F0FE;
}

.pd-rel-info {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.pd-rel-cat {
  font-family: var(--font-d);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2F6BFF;
}

.pd-rel-name {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 600;
  color: #0A2540;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pd-rel-cta {
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 600;
  color: #2F6BFF;
  margin-top: auto;
  padding-top: 8px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .pd-main { grid-template-columns: 1fr; }
  .pd-gallery { position: static; }
  .pd-main-img-wrap { max-width: 480px; margin: 0 auto; }
  .pd-related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .pd-related-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pd-actions { flex-direction: column; }
  .pd-btn-primary, .pd-btn-secondary { justify-content: center; }
}

/* ===========================================
   DOWNLOADS PAGE
   =========================================== */
.dl-sections { display: flex; flex-direction: column; gap: 40px; padding-bottom: 60px; }
.dl-section-title {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.dl-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 4px;
  border-bottom: 1px solid var(--border);
}
.dl-row:last-child { border-bottom: none; }
.dl-row-name {
  font-family: var(--font-d);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  line-height: 1.35;
}
.dl-row-name:hover { color: var(--blue); }
.dl-row-btns { display: flex; gap: 8px; flex-shrink: 0; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 640px) {
  .dl-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .dl-row-btns { justify-content: flex-start; }
}

/* ============================================
   CATEGORY LANDING PAGES (.lp-*) — generated by build-landing.js
   ============================================ */
.lp { padding-top: var(--nav-h); }

.lp-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px);
}
.lp-container--narrow { max-width: 760px; }

.lp-section { padding: clamp(48px, 7vw, 88px) 0; }

/* ── Hero ── */
.lp-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54vh;
  padding: clamp(56px, 9vw, 120px) 0;
  background-image: linear-gradient(100deg, rgba(8,12,20,0.92) 0%, rgba(8,12,20,0.78) 42%, rgba(8,12,20,0.45) 100%), var(--lp-hero-bg);
  background-size: cover;
  background-position: center right;
  color: #fff;
}
.lp-hero-inner {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px);
}
.lp-kicker {
  display: inline-block;
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.lp-h1 {
  font-family: var(--font-d);
  font-size: clamp(34px, 5.4vw, 60px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  max-width: 16ch;
}
.lp-lead { max-width: 62ch; }
.lp-lead-p {
  font-family: var(--font-d);
  font-size: clamp(15px, 1.4vw, 17.5px);
  line-height: 1.72;
  color: rgba(255,255,255,0.82);
  margin: 0 0 14px;
}
.lp-hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* ── Buttons ── */
.lp-btn-primary, .lp-btn-secondary {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-d);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 10px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.lp-btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,168,255,0.28);
}
.lp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,168,255,0.38); }
.lp-btn-secondary {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
}
.lp-hero .lp-btn-secondary { color: #fff; border-color: rgba(255,255,255,0.4); }
.lp-btn-secondary:hover { border-color: var(--blue); color: var(--blue); }

/* Section headings shared across the body sections */
.lp-h2 {
  font-family: var(--font-d);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0 0 14px;
}
.lp-section-intro {
  font-family: var(--font-d);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dim);
  margin: 0 0 30px;
  max-width: 60ch;
}

/* ── Benefits grid ── */
.lp-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.lp-benefit {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 24px;
}
.lp-benefit-title {
  font-family: var(--font-d);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 10px;
}
.lp-benefit-text {
  font-family: var(--font-d);
  font-size: 14px;
  line-height: 1.62;
  color: var(--text-dim);
  margin: 0;
}

/* ── Product-type explainer (definition list) ── */
.lp-types { margin: 0; display: grid; gap: 18px; }
.lp-type {
  padding: 22px 24px;
  background: var(--bg-2);
  border-radius: 12px;
}
.lp-type-term {
  font-family: var(--font-d);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px;
}
.lp-type-desc {
  font-family: var(--font-d);
  font-size: 14.5px;
  line-height: 1.66;
  color: var(--text-dim);
  margin: 0;
}

/* ── Featured products (reuses .pl-card) ── */
.lp-products-section { background: var(--bg-2); }
.lp-products {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.lp-products .pl-card-img-wrap {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 14px;
}
.lp-products .pl-card-img { max-width: 100%; max-height: 100%; object-fit: contain; }
.lp-products .pl-card-no-img { width: 100%; height: 100%; background: var(--bg-2); border-radius: 8px; }
.lp-products .pl-card-body {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 14px 16px;
}
.lp-products .pl-card-name {
  font-family: var(--font-d);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text);
  margin: 0;
}
.lp-products .pl-card-cta { color: var(--blue); font-weight: 700; flex-shrink: 0; }
.lp-products .pl-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(0,168,255,0.35); }
.lp-products-cta { margin-top: 28px; text-align: center; }

/* ── FAQ (native <details>) ── */
.lp-faq { display: grid; gap: 12px; }
.lp-faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px 22px;
  background: var(--bg-card);
}
.lp-faq-q {
  font-family: var(--font-d);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  padding: 18px 28px 18px 0;
  list-style: none;
  position: relative;
}
.lp-faq-q::-webkit-details-marker { display: none; }
.lp-faq-q::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--blue);
  transition: transform 0.2s ease;
}
.lp-faq-item[open] .lp-faq-q::after { content: '−'; }
.lp-faq-a {
  padding: 0 0 20px;
}
.lp-faq-a p {
  font-family: var(--font-d);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-dim);
  margin: 0;
}

/* ── Closing CTA band ── */
.lp-cta-section { background: linear-gradient(120deg, #0b1220 0%, #142338 100%); }
.lp-cta { text-align: center; }
.lp-cta-title { font-family: var(--font-d); font-size: clamp(24px, 3vw, 34px); font-weight: 700; color: #fff; margin: 0 0 14px; }
.lp-cta-text { font-family: var(--font-d); font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.75); margin: 0 auto 28px; max-width: 52ch; }

/* ── Related solutions ── */
.lp-related-section { border-top: 1px solid var(--border); }
.lp-related { display: flex; flex-wrap: wrap; gap: 12px; }
.lp-related-link {
  font-family: var(--font-d);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}
.lp-related-link:hover { border-color: var(--blue); color: var(--blue); background: rgba(0,168,255,0.05); }

/* ── Landing responsive ── */
@media (max-width: 1000px) {
  .lp-benefits { grid-template-columns: repeat(2, 1fr); }
  .lp-products { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .lp-benefits { grid-template-columns: 1fr; }
  .lp-products { grid-template-columns: repeat(2, 1fr); }
  .lp-hero { min-height: 0; }
}

/* ============================================
   PARTNER PAGE — Central America country hub
   ============================================ */
.partner-countries-section {
  padding: clamp(56px, 8vw, 96px) clamp(24px, 4vw, 48px);
  background: var(--bg-2);
}
.partner-countries-inner { max-width: 940px; margin: 0 auto; text-align: center; }
.partner-countries-title {
  font-family: var(--font-d);
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0 0 12px;
}
.partner-countries-sub {
  font-family: var(--font-d);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0 auto 34px;
  max-width: 54ch;
}
/* Flex-wrap + centered so the list stays balanced with any card count
   (currently 7: six countries + an "Any Country" option). */
.partner-countries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.partner-country-card {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 1 208px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.partner-country-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,168,255,0.4);
}
/* The "Any Country" catch-all card reads as a distinct, lightly-accented option. */
.partner-country-card--any {
  background: linear-gradient(180deg, rgba(0,168,255,0.06), rgba(0,168,255,0.02));
  border-color: rgba(0,168,255,0.25);
}
.pcc-flag { font-size: 26px; line-height: 1; }
.pcc-name {
  font-family: var(--font-d);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  flex: 1;
  text-align: left;
}
.pcc-arrow { color: var(--blue); font-weight: 700; font-size: 18px; }

@media (max-width: 520px) { .partner-country-card { flex: 1 1 100%; } }
