/* ============================================================
   On Capacitor — Main Stylesheet
   Dark industrial theme. Edit :root to retheme.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&display=swap');

:root {
  /* Background layers */
  --bg:          #0c0c0c;
  --bg-surface:  #141414;
  --bg-card:     #1c1c1c;
  --bg-border:   rgba(255,255,255,0.07);

  /* Accent — red */
  --red:         #cc1414;
  --red-hover:   #e01a1a;
  --red-dim:     rgba(204,20,20,0.12);

  /* Light section palette */
  --light-bg:    #f5f5f5;
  --light-card:  #ffffff;
  --light-border:rgba(0,0,0,0.09);

  /* Text */
  --white:       #ffffff;
  --text-light:  rgba(255,255,255,0.82);
  --text-muted:  #888888;
  --text-on-lt:  #111111;
  --text-muted-lt:#666666;

  /* Compat aliases used elsewhere in the codebase */
  --navy:        #0c0c0c;
  --navy-mid:    #141414;
  --blue:        #cc1414;
  --blue-light:  #e01a1a;
  --gold:        #cc1414;
  --off-white:   #f5f5f5;
  --gray-300:    #888888;
  --gray-500:    #666666;
  --gray-700:    #333333;
  --gray-900:    #111111;
  --text-dark:   #111111;

  /* Typography */
  --font:         'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Barlow Condensed', 'Inter', system-ui, sans-serif;

  /* Shape */
  --radius:      3px;
  --radius-lg:   6px;
  --shadow:      0 2px 16px rgba(0,0,0,0.55);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.75);
  --transition:  0.2s ease;
  --max-w:       1200px;
  --nav-h:       72px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--white);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utility ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }

/* Dark surface variant (slightly lighter than body) */
.section--dark {
  background: var(--bg-surface);
  color: var(--white);
}

/* Light contrast sections */
.section--alt {
  background: var(--light-bg);
  color: var(--text-on-lt);
}
.section--white {
  background: var(--light-card);
  color: var(--text-on-lt);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.tag::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.section--alt .tag,
.section--white .tag { color: var(--red); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section--alt .section-title,
.section--white .section-title { color: var(--text-on-lt); }

.section-lead {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.section--alt .section-lead,
.section--white .section-lead { color: var(--text-muted-lt); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

/* Primary — red fill */
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(204,20,20,0.4);
}

/* Gold — same red in new theme */
.btn-gold {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-gold:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(204,20,20,0.4);
}

/* Outline — white border on dark bg */
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* Outline on light bg */
.btn-outline-dark {
  background: transparent;
  border-color: var(--text-on-lt);
  color: var(--text-on-lt);
}
.btn-outline-dark:hover {
  background: var(--text-on-lt);
  color: var(--white);
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
  background: rgba(12,12,12,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bg-border);
}
.nav.scrolled {
  background: rgba(12,12,12,0.98);
  box-shadow: 0 1px 0 var(--bg-border), 0 4px 32px rgba(0,0,0,0.5);
}
.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.nav-inner .nav-links { justify-self: center; }
.nav-inner .nav-end   { justify-self: end; display: flex; align-items: center; gap: 8px; }

.nav-cta {
  font-size: 0.8rem !important;
  padding: 8px 20px !important;
  background: var(--red) !important;
  border-color: var(--red) !important;
  color: var(--white) !important;
  border-radius: var(--radius) !important;
  letter-spacing: 0.06em;
}
.nav-cta:hover {
  background: var(--red-hover) !important;
  border-color: var(--red-hover) !important;
  transform: none !important;
  box-shadow: none !important;
}
@media (max-width: 640px) { .nav-end .nav-cta { display: none; } }

/* Language switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: 4px;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding: 4px 6px;
  border-radius: var(--radius);
  transition: color 0.15s ease;
}
.lang-btn:hover { color: var(--text); }
.lang-btn.active { color: var(--red); }
.lang-sep { color: var(--text-muted); opacity: 0.4; font-size: 0.8rem; }

/* In the mobile drop-down menu */
.lang-switch-mobile {
  padding: 16px 24px;
  border-top: 1px solid var(--border, rgba(0,0,0,0.08));
  margin-top: 8px;
}
@media (min-width: 641px) { .lang-switch-mobile { display: none; } }
@media (max-width: 640px) { .nav-end .lang-switch { display: none; } }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-logo svg { width: auto; height: 28px; }
.nav-logo span.accent { color: var(--white); opacity: 0.6; }
.nav-logo-img { height: 36px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: all var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(12,12,12,0.98);
  backdrop-filter: blur(12px);
  padding: 16px 24px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--bg-border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 11px 16px;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.nav-mobile a:hover { background: rgba(255,255,255,0.07); color: var(--white); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
  padding-top: var(--nav-h);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img,
.hero-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.22;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(12,12,12,0.92) 0%,
    rgba(12,12,12,0.6) 55%,
    rgba(12,12,12,0.3) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '/';
  font-size: 1rem;
  color: var(--red);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 24px;
  max-width: 680px;
}
.hero-title .highlight { color: var(--red); }
.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.7;
  text-transform: none;
  font-family: var(--font);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2.5s infinite;
}
.hero-scroll svg { width: 18px; height: 18px; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(7px)} }

/* ── Features / Product category cards ───────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--light-border);
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  overflow: hidden;
}

/* Horizontal product category card (homepage) */
.feature-card {
  padding: 32px 28px;
  background: var(--light-card);
  transition: background var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.feature-card:hover { background: var(--light-bg); }

.section--dark .feature-card {
  background: var(--bg-card);
  border-color: var(--bg-border);
  color: var(--white);
}
.section--dark .feature-card:hover { background: #222; }

.feature-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #e0e0e0;
  margin-bottom: 20px;
}
.section--dark .feature-card-img,
.section--dark .feature-card { background-color: var(--bg-card); }
.feature-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-card-img svg { width: 36px; height: 36px; }

.feature-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}

.feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--red-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--red);
}
.feature-icon svg { width: 22px; height: 22px; }

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--text-on-lt);
  line-height: 1.1;
}
.section--dark .feature-card h3 { color: var(--white); }

.feature-card-underline {
  width: 32px; height: 3px;
  background: var(--red);
  margin-bottom: 14px;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-muted-lt);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}
.section--dark .feature-card p { color: var(--text-muted); }

.feature-card-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.feature-card:hover .feature-card-link { gap: 10px; }
.feature-card-link svg { width: 14px; height: 14px; }

/* ── Split (text + image) ─────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-img .placeholder-img {
  width: 100%; height: 100%;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  min-height: 300px;
  border: 1px solid var(--bg-border);
}

/* ── Stats bar ────────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-surface);
  color: var(--white);
  padding: 56px 0;
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--red);
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Products grid (homepage preview) ───────────────────────*/
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: var(--bg-border);
  border: 1px solid var(--bg-border);
}
.product-card {
  background: var(--bg-surface);
  overflow: hidden;
  transition: background var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { background: var(--bg-card); }
.product-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-card);
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-img .placeholder-img {
  width: 100%; height: 100%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  min-height: 160px;
}
.product-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-card-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--white);
}
.product-card p { font-size: 0.85rem; color: var(--text-muted); flex: 1; margin-bottom: 18px; line-height: 1.6; }
.product-card .btn { align-self: flex-start; padding: 9px 18px; font-size: 0.78rem; }

/* ── Markdown content areas ───────────────────────────────── */
.md-content h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; text-transform: uppercase; margin-bottom: 16px; }
.md-content h2 { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; text-transform: uppercase; margin: 48px 0 16px; }
.md-content h3 { font-size: 1.1rem; font-weight: 700; margin: 32px 0 12px; }
.md-content p { margin-bottom: 18px; color: var(--text-muted); font-size: 1rem; line-height: 1.75; }
.md-content ul { margin: 0 0 18px 20px; list-style: disc; }
.md-content ul li { color: var(--text-muted); margin-bottom: 8px; }
.md-content strong { color: var(--white); font-weight: 700; }
.section--alt .md-content p,
.section--alt .md-content ul li { color: var(--text-muted-lt); }
.section--alt .md-content strong { color: var(--text-on-lt); }

/* ── Resources ────────────────────────────────────────────── */
.resource-categories {
  display: flex;
  flex-direction: column;
  gap: 56px;
  max-width: 880px;
  margin: 0 auto;
}
.resource-category-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--light-border);
}
.resource-category-icon {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--red-dim);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}
.resource-category-icon svg { width: 22px; height: 22px; }
.resource-category-text h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-on-lt);
  margin-bottom: 4px;
}
.resource-category-text p {
  font-size: 0.95rem;
  color: var(--text-muted-lt);
  line-height: 1.6;
}

.resource-articles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.resource-article {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  background: var(--light-card);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.resource-article:hover {
  background: var(--light-bg);
  border-color: var(--red);
  transform: translateY(-2px);
}
.resource-article-date {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted-lt);
  margin-bottom: 8px;
}
.resource-article h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-on-lt);
  line-height: 1.35;
  margin-bottom: 8px;
}
.resource-article p {
  font-size: 0.875rem;
  color: var(--text-muted-lt);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.resource-article-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
}
.resource-article-link svg { width: 14px; height: 14px; }
.resource-empty {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-muted-lt);
}

/* Article detail */
.article-container { max-width: 760px; margin: 0 auto; }
.article-meta { margin-bottom: 24px; }
.article-back { margin-top: 48px; }

/* ── Contact ──────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.contact-info p { color: var(--text-muted); margin-bottom: 32px; }
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--red-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  border: 1px solid rgba(204,20,20,0.2);
}
.contact-detail-icon svg { width: 18px; height: 18px; }
.contact-detail-text strong { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 4px; }
.contact-detail-text span { font-size: 0.95rem; color: var(--white); }

.contact-form {
  background: var(--bg-surface);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--bg-border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--white);
  background: var(--bg-card);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group select option { background: var(--bg-card); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204,20,20,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  background: var(--light-card);
  border-radius: var(--radius);
  color: var(--text-on-lt);
  font-weight: 600;
  margin-top: 16px;
  border: 1px solid var(--light-border);
}

.form-success .check {
  color: #16a34a;
  font-weight: 700;
}

/* ── Page hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--bg-surface);
  padding: calc(var(--nav-h) + 56px) 0 72px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--bg-border);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(204,20,20,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  justify-content: center;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb svg { width: 12px; height: 12px; }

/* ── Team ─────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}
.team-card { text-align: center; }
.team-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  margin: 0 auto 14px;
  overflow: hidden;
  background: var(--bg-card);
  border: 2px solid var(--bg-border);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-avatar .placeholder-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 1.8rem;
}
.team-card h4 { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.team-card span { font-size: 0.8rem; color: var(--text-muted); }

/* ── CTA banner ───────────────────────────────────────────── */
.cta-banner {
  background: var(--bg-surface);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(204,20,20,0.07), transparent 70%);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.cta-banner p { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 480px; margin: 0 auto 36px; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: #070707;
  color: var(--white);
  padding: 56px 0 28px;
  border-top: 1px solid var(--bg-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 260px; }
.footer-col h5 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 32px; height: 32px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--red); color: var(--white); }
.footer-social svg { width: 14px; height: 14px; }

/* ── Nav dropdown ─────────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-surface);
  border-radius: var(--radius);
  padding: 4px;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--bg-border);
  z-index: 100;
}
.nav-dropdown-menu.open { display: block; }
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: var(--radius);
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all var(--transition);
}
.nav-dropdown-item:hover { background: var(--bg-card); color: var(--white); }
.nav-dropdown-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--red-dim);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
}
.nav-dropdown-icon svg { width: 14px; height: 14px; }
.nav-dropdown-text strong { display: block; font-size: 0.82rem; color: var(--white); line-height: 1.2; }
.nav-dropdown-text span { font-size: 0.7rem; color: var(--text-muted); }

/* ── Category overview cards (unused, kept for compat) ───── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}
.category-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 2px;
  background: var(--red-dim);
  color: var(--red);
}
.section--alt .category-tag {
  background: rgba(204,20,20,0.1);
}

/* ── Products browse: sidebar + listing ───────────────────── */
.products-browse-section { padding: 56px 0 96px; }

.products-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}

/* Sidebar */
.products-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  border-right: 1px solid var(--bg-border);
  padding-right: 24px;
}
.products-sidebar-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 12px 12px;
  display: block;
}
.products-sidebar-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius);
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  border-left: 3px solid transparent;
  transition: all var(--transition);
  margin-bottom: 3px;
}
.products-sidebar-btn:hover {
  color: var(--white);
  background: var(--bg-surface);
}
.products-sidebar-btn.active {
  color: var(--white);
  border-left-color: var(--red);
  background: rgba(204,20,20,0.08);
}
.products-sidebar-btn-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: var(--radius);
  background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.products-sidebar-btn.active .products-sidebar-btn-icon {
  background: var(--red-dim);
  color: var(--red);
}
.products-sidebar-btn-icon svg { width: 16px; height: 16px; }
.products-sidebar-btn-text strong { display: block; font-size: 0.875rem; letter-spacing: 0.01em; }
.products-sidebar-btn-text span { font-size: 0.72rem; font-weight: 400; color: var(--text-muted); }

/* Product panels */
.products-panel { display: none; }
.products-panel.active { display: block; }

.products-panel-header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--bg-border);
}
.products-panel-header h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.products-panel-header p { color: var(--text-muted); font-size: 0.9rem; }

/* Product list rows */
.product-list { display: flex; flex-direction: column; gap: 1px; }

.product-list-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  align-items: center;
  padding: 16px;
  border-radius: var(--radius);
  transition: background var(--transition);
  text-decoration: none;
  color: inherit;
}
.product-list-item:hover { background: var(--bg-surface); }
.product-list-item:hover .product-list-name { color: var(--red); }

.product-list-thumb {
  width: 96px; height: 72px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-surface);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--bg-border);
}
.product-list-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-list-thumb::after {
  content: '';
  display: block;
  width: 22px; height: 22px;
  opacity: 0.2;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4 16l4.586-4.586a2 2 0 012.828 0L16 16m-2-2l1.586-1.586a2 2 0 012.828 0L20 14m-6-6h.01M6 20h12a2 2 0 002-2V6a2 2 0 00-2-2H6a2 2 0 00-2 2v12a2 2 0 002 2z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.product-list-thumb img ~ *,
.product-list-thumb:has(img)::after { display: none; }

.product-list-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 5px;
  transition: color var(--transition);
}
.product-list-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Placeholder images ───────────────────────────────────── */
.placeholder-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 160px;
  background: var(--bg-surface);
  color: rgba(255,255,255,0.15);
}
.placeholder-img svg { width: 40px; height: 40px; }

/* ── Animations ───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ── Section header utility ───────────────────────────────── */
.section-header {
  margin-bottom: 52px;
}
.section-header .section-title { margin-bottom: 12px; }

/* ── Hero split layout ────────────────────────────────────── */
.hero-content {
  display: flex;
  align-items: center;
  gap: 48px;
}
.hero-copy { flex: 1; min-width: 0; }
.hero-visual {
  display: none;
  flex: 0 0 440px;
  opacity: 0.9;
}
.hero-visual svg { width: 100%; height: auto; display: block; }

/* Hero proof chips */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 13px 5px 10px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  background: rgba(255,255,255,0.03);
}
.hero-chip::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ── Applications / Who We Serve ──────────────────────────── */
.applications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--bg-border);
  border-left: 1px solid var(--bg-border);
}
.application-tile {
  padding: 36px 28px;
  border-right: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
  transition: background var(--transition);
}
.application-tile:hover { background: rgba(255,255,255,0.025); }
.application-icon {
  width: 36px;
  height: 36px;
  color: var(--red);
  margin-bottom: 16px;
  opacity: 0.9;
}
.application-icon svg { width: 100%; height: 100%; }
.application-tile h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 9px;
  letter-spacing: 0.01em;
}
.application-tile p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Trust / Quality cards ────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.trust-card {
  padding: 32px;
  border: 1px solid var(--bg-border);
  background: var(--bg-surface);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.trust-card:hover { border-color: rgba(204,20,20,0.3); }
.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--red-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 18px;
}
.trust-icon svg { width: 20px; height: 20px; }
.trust-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.trust-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Process / Sourcing flow ──────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--bg-border);
  border-left: 1px solid var(--bg-border);
}
.process-step {
  padding: 36px 28px;
  border-right: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
}
.process-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  opacity: 0.85;
}
.process-step h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}
.process-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Light-section component overrides ────────────────────── */

/* Applications grid */
.section--alt .applications-grid,
.section--white .applications-grid {
  border-color: var(--light-border);
}
.section--alt .application-tile,
.section--white .application-tile {
  border-color: var(--light-border);
}
.section--alt .application-tile:hover,
.section--white .application-tile:hover {
  background: rgba(0,0,0,0.03);
}
.section--alt .application-tile h3,
.section--white .application-tile h3 {
  color: var(--text-on-lt);
}
.section--alt .application-tile p,
.section--white .application-tile p {
  color: var(--text-muted-lt);
}

/* Trust cards */
.section--alt .trust-card,
.section--white .trust-card {
  background: var(--light-card);
  border-color: var(--light-border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.section--alt .trust-card:hover,
.section--white .trust-card:hover {
  border-color: rgba(204,20,20,0.25);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.section--alt .trust-card h3,
.section--white .trust-card h3 {
  color: var(--text-on-lt);
}
.section--alt .trust-card p,
.section--white .trust-card p {
  color: var(--text-muted-lt);
}

/* Process steps */
.section--alt .process-steps,
.section--white .process-steps {
  border-color: var(--light-border);
}
.section--alt .process-step,
.section--white .process-step {
  border-color: var(--light-border);
}
.section--alt .process-step h3,
.section--white .process-step h3 {
  color: var(--text-on-lt);
}
.section--alt .process-step p,
.section--white .process-step p {
  color: var(--text-muted-lt);
}

/* Products grid on light */
.section--alt .products-grid,
.section--white .products-grid {
  background: var(--light-border);
  border-color: var(--light-border);
}
.section--alt .product-card,
.section--white .product-card {
  background: var(--light-card);
}
.section--alt .product-card:hover,
.section--white .product-card:hover {
  background: var(--light-bg);
}
.section--alt .product-card h3,
.section--white .product-card h3 {
  color: var(--text-on-lt);
}
.section--alt .product-card p,
.section--white .product-card p {
  color: var(--text-muted-lt);
}
.section--alt .product-card-img,
.section--white .product-card-img {
  background: #e8e8e8;
}
.section--alt .product-card-img .placeholder-img,
.section--white .product-card-img .placeholder-img {
  background: #e8e8e8;
  color: rgba(0,0,0,0.15);
}

/* Split (about teaser) on light */
.section--alt .split-img .placeholder-img,
.section--white .split-img .placeholder-img {
  background: #e8e8e8;
  color: rgba(0,0,0,0.15);
  border-color: var(--light-border);
}
.section--alt .split p,
.section--white .split p {
  color: var(--text-muted-lt);
}

/* md-content on light */
.section--white .md-content p,
.section--white .md-content ul li { color: var(--text-muted-lt); }
.section--white .md-content strong { color: var(--text-on-lt); }

/* Team cards on light */
.section--alt .team-avatar,
.section--white .team-avatar {
  background: #e8e8e8;
  border-color: var(--light-border);
}
.section--alt .team-card h4,
.section--white .team-card h4 { color: var(--text-on-lt); }
.section--alt .team-card span,
.section--white .team-card span { color: var(--text-muted-lt); }

/* Products browse sidebar + listing on light */
.section--alt .products-sidebar,
.section--white .products-sidebar { border-color: var(--light-border); }
.section--alt .products-sidebar-btn,
.section--white .products-sidebar-btn { color: var(--text-muted-lt); }
.section--alt .products-sidebar-btn:hover,
.section--white .products-sidebar-btn:hover {
  color: var(--text-on-lt);
  background: var(--light-bg);
}
.section--alt .products-sidebar-btn.active,
.section--white .products-sidebar-btn.active {
  color: var(--text-on-lt);
  background: rgba(204,20,20,0.06);
}
.section--alt .products-sidebar-btn-text strong,
.section--white .products-sidebar-btn-text strong { color: var(--text-on-lt); }
.section--alt .products-panel-header,
.section--white .products-panel-header { border-color: var(--light-border); }
.section--alt .products-panel-header h2,
.section--white .products-panel-header h2 { color: var(--text-on-lt); }
.section--alt .product-list-item:hover,
.section--white .product-list-item:hover { background: var(--light-bg); }
.section--alt .product-list-name,
.section--white .product-list-name { color: var(--text-on-lt); }
.section--alt .product-list-thumb,
.section--white .product-list-thumb {
  background: #e8e8e8;
  border-color: var(--light-border);
}

/* Contact section on light */
.section--alt .contact-info h2,
.section--white .contact-info h2 { color: var(--text-on-lt); }
.section--alt .contact-info p,
.section--white .contact-info p { color: var(--text-muted-lt); }
.section--alt .contact-detail-text span,
.section--white .contact-detail-text span { color: var(--text-on-lt); }
.section--alt .contact-form,
.section--white .contact-form {
  background: var(--light-bg);
  border-color: var(--light-border);
}
.section--alt .form-group label,
.section--white .form-group label { color: var(--text-muted-lt); }
.section--alt .form-group input,
.section--alt .form-group textarea,
.section--alt .form-group select,
.section--white .form-group input,
.section--white .form-group textarea,
.section--white .form-group select {
  background: var(--light-card);
  color: var(--text-on-lt);
  border-color: rgba(0,0,0,0.12);
}
.section--alt .form-group select option,
.section--white .form-group select option {
  background: var(--light-card);
  color: var(--text-on-lt);
}

/* Footer alt name (Chinese) */
.footer-alt-name {
  font-size: 0.72rem !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2) !important;
  margin-top: 2px;
  margin-bottom: 10px;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (min-width: 1024px) {
  .hero-visual { display: block; }
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .applications-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .category-grid { grid-template-columns: 1fr; }
  .products-layout { grid-template-columns: 1fr; gap: 0; }
  .products-sidebar {
    position: static;
    border-right: none;
    border-bottom: 1px solid var(--bg-border);
    padding-right: 0;
    padding-bottom: 14px;
    margin-bottom: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .products-sidebar-label { display: none; }
  .products-sidebar-btn {
    border-left: none;
    border-bottom: 2px solid transparent;
    border-radius: var(--radius);
    padding: 8px 14px;
    flex: 1;
    min-width: 130px;
  }
  .products-sidebar-btn.active {
    border-left-color: transparent;
    border-bottom-color: var(--red);
  }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-title { font-size: 2.4rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .applications-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .hero-chips { gap: 6px; }
}
