/* UNEH: World-class design system (Stripe/Apple/Vercel-inspired) */
:root {
  /* Brand */
  --uneh-green: #22c55e;
  --uneh-green-dark: #16a34a;
  --uneh-green-light: #dcfce7;
  --uneh-blue: #2563eb;
  --uneh-blue-dark: #1d4ed8;
  --uneh-gold: #eab308;
  --uneh-gold-light: #fef9c3;
  /* Surfaces */
  --surface: #ffffff;
  --surface-subtle: #f8fafc;
  --surface-dark: #0f1419;
  --surface-dark-elevated: #1a2332;
  --color-bg: var(--surface);
  --color-bg-alt: var(--surface-subtle);
  --color-text: #0f172a;
  --color-text-muted: #64748b;
  --color-border: #e2e8f0;
  /* Typography: Inter with system fallback */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: var(--font-sans);
  /* 8px spacing scale */
  --s1: 0.5rem;   /* 8px */
  --s2: 1rem;     /* 16px */
  --s3: 1.5rem;   /* 24px */
  --s4: 2rem;     /* 32px */
  --s5: 3rem;     /* 48px */
  --s6: 4rem;     /* 64px */
  --s7: 6rem;     /* 96px */
  --space: var(--s2);
  --space-lg: var(--s4);
  --space-xl: var(--s5);
  --space-section: var(--s7);
  --max-width: 72rem;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.12);
  /* Type scale (headers ~50% larger) */
  --text-hero: clamp(3.75rem, 7.5vw + 1.5rem, 5.625rem);
  --text-h1: 3.375rem;
  --text-h2: 2.625rem;
  --text-h3: 2.025rem;
  --text-base: 1.0625rem;
  --text-lead: 1.25rem;
  --text-small: 0.9375rem;
  --hero-min-height: min(85vh, 640px);
  --touch-target: 48px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

/* Page wrap: template-style container */
.page {
  position: relative;
}

.main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--s5) var(--s4);
  padding-bottom: var(--s7);
  position: relative;
}

/* No top padding when hero is first (home): full-bleed hero under header */
.main:has(> .hero-full) {
  padding-top: 0;
}

/* Section pattern: template-style page-section with generous spacing */
.page-section {
  margin-bottom: var(--s6);
  padding-bottom: var(--s6);
}

.page-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.section-title {
  font-size: var(--text-h2);
  margin-bottom: var(--s2);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.02em;
  display: inline-block;
}

.section-title.text-center {
  display: block;
  text-align: center;
  margin-bottom: var(--s2);
}

.section-title-caps {
  letter-spacing: 0.04em;
}

.section-title-descr {
  font-size: var(--text-lead);
  color: var(--color-text-muted);
  text-align: center;
  max-width: 56rem;
  margin: 0 auto var(--s5);
  line-height: 1.6;
}

.section-divider {
  border: 0;
  margin: 0 0 var(--s5);
  border-top: 1px solid var(--color-border);
}

/* Full-bleed alternate section background */
.section-alt {
  margin-left: calc(-50vw + 50% + var(--s6));
  margin-right: calc(-50vw + 50%);
  margin-bottom: 0;
  padding: 0;
  background: var(--surface-subtle);
}

.section-alt-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Factory page: section content and image grids */
.factory-section-content {
  font-size: var(--text-lead);
  line-height: 1.65;
}

.factory-section-content ul {
  margin: var(--s3) 0;
  padding-left: var(--s4);
}

.factory-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s3);
  margin-top: var(--s4);
}

.factory-image-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: var(--surface-subtle);
}

/* Two-column layout: main content + right sidebar (unehg.com-style) */
.page-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-xl);
  align-items: start;
}

@media (max-width: 900px) {
  .page-with-sidebar {
    grid-template-columns: 1fr;
  }
}

.main-content {
  min-width: 0;
}

.aside {
  position: sticky;
  top: calc(44px + var(--space) * 2 + 2px + 1rem);
}

/* Right-side news box (latest 3 with blurb) */
.news-sidebar {
  margin: 0;
}

.news-sidebar-box {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow);
}

.news-sidebar-title {
  margin: 0 0 var(--space);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--uneh-green-dark);
  border-bottom: 2px solid var(--uneh-green);
  padding-bottom: 0.35rem;
  display: inline-block;
}

.news-sidebar-list {
  list-style: none;
  margin: 0 0 var(--space);
  padding: 0;
}

.news-sidebar-item {
  margin: 0 0 var(--space);
  padding: 0 0 var(--space);
  border-bottom: 1px solid var(--color-border);
}

.news-sidebar-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.news-sidebar-link {
  display: block;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s;
}

.news-sidebar-link:hover {
  color: var(--uneh-green);
  text-decoration: none;
}

.news-sidebar-date {
  display: block;
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 0.3rem;
}

.news-sidebar-headline {
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.35;
  display: block;
  margin-bottom: 0.4rem;
}

.news-sidebar-blurb {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

.news-sidebar-more {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--uneh-green);
  text-decoration: none;
}

.news-sidebar-more:hover {
  text-decoration: underline;
}

/* Page banner: inner page hero */
.page-banner {
  background: var(--surface-dark);
  color: #fff;
  margin-bottom: 0;
}

.page-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--s6) var(--s4);
}

.page-banner-title {
  margin: 0 0 var(--s1);
  font-size: clamp(2.625rem, 4.5vw, 3.375rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
}

.page-banner-breadcrumb {
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.7);
}

.page-banner-breadcrumb a {
  color: var(--uneh-green);
  text-decoration: none;
}

.page-banner-breadcrumb a:hover {
  color: var(--uneh-green-light);
  text-decoration: underline;
}

.page-banner-sep {
  margin: 0 var(--s1);
  opacity: 0.6;
}

/* Header: minimal, world-class */
.site-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--color-border);
  padding: var(--s2) var(--s4);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s3);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 700;
  font-size: 1.125rem;
  gap: var(--s1);
}

.logo img {
  height: 4.25rem;
  width: auto;
  display: block;
}

@media (min-width: 900px) {
  .logo img {
    height: 5.25rem;
  }
}

.site-nav .nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1rem;
}

.nav-link {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  padding: var(--s1) var(--s2);
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-link:hover {
  color: var(--uneh-green);
  background: var(--uneh-green-light);
}

.nav-link.active {
  color: var(--uneh-green);
  background: var(--uneh-green-light);
}

/* Dropdowns */
.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown .nav-link:focus + .nav-submenu {
  opacity: 1;
  visibility: visible;
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  margin: 0;
  padding: 0.5rem 0;
  list-style: none;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 50;
}

.nav-submenu a {
  display: block;
  padding: 0.6rem 1.15rem;
  color: var(--color-text);
  text-decoration: none;
  font-size: 1.05rem;
}

.nav-submenu a:hover {
  background: var(--uneh-green-light);
  color: var(--uneh-green);
}

/* Page sections with alternating background */
.page-section {
  padding: var(--s5) 0;
}

.page-section.alt {
  background: var(--color-bg-alt);
  margin: 0 calc(-50vw + 50%);
  padding-left: calc(50vw - 50% + (var(--max-width) / 2) - (var(--max-width) / 2));
  padding-right: calc(50vw - 50%);
}

.page-section.alt .section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 calc(var(--space) * 2);
}

/* Hero: value-first, Stripe/OpenAI quality */
.hero-full {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  min-height: var(--hero-min-height);
  display: flex;
  align-items: center;
  background: var(--surface-dark);
  color: #fff;
  position: relative;
  contain: layout style;
  overflow: hidden;
}

.hero-full-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-full-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-full-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
}

.hero-full-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--s7) var(--s4);
}

.hero-full-content {
  max-width: 36rem;
  animation: heroFadeIn 0.7s ease-out;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-headline {
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 var(--s2);
  color: #fff;
  border: none;
  padding: 0;
}

.hero-tagline {
  font-size: var(--text-lead);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 var(--s3);
  line-height: 1.5;
}

.hero-benefit {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 var(--s5);
  line-height: 1.6;
}

.hero-benefit strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-bottom: var(--s5);
}

.hero-scroll {
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  transition: color 0.15s ease;
}

.hero-scroll:hover {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.hero-scroll::after {
  content: "↓";
  font-size: 0.85em;
}

@media (max-width: 640px) {
  .hero-full {
    min-height: min(80vh, 560px);
  }
  .hero-ctas {
    flex-direction: column;
  }
  .hero-ctas .btn {
    width: 100%;
    text-align: center;
    min-height: var(--touch-target);
  }
}

/* Buttons: conversion-focused, accessible */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  min-height: var(--touch-target);
  min-width: 10rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:focus {
  outline: 2px solid var(--uneh-gold);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--uneh-green);
  color: #fff !important;
  border-color: var(--uneh-green);
}

.btn-primary:hover {
  background: var(--uneh-green-dark);
  border-color: var(--uneh-green-dark);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.main .btn-secondary {
  color: var(--uneh-green) !important;
  border-color: var(--uneh-green);
}

.main .btn-secondary:hover {
  background: var(--uneh-green-light);
  color: var(--uneh-green-dark) !important;
  border-color: var(--uneh-green-dark);
  transform: translateY(-1px);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.2rem;
  min-width: 12rem;
}

.btn-block {
  width: 100%;
  display: block;
}

/* Credibility strip: metrics */
.stats-bar {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background: var(--surface-dark-elevated);
  color: #fff;
  padding: var(--s6) var(--s4);
  contain: layout style;
}

.stats-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s5);
  text-align: center;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: var(--s1);
  min-width: 8rem;
}

.stat-value {
  font-size: clamp(2.625rem, 4.5vw, 3.375rem);
  font-weight: 700;
  color: var(--uneh-green);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.stat-label {
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

@media (max-width: 700px) {
  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s4);
  }
  .stats-bar {
    padding: var(--s5) var(--s4);
  }
}

/* Benefit cards: what we deliver */
.benefits-section {
  contain: layout style;
  padding: var(--s7) 0;
}

.benefit-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s5);
  margin-top: var(--s5);
}

.benefit-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--s5);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.benefit-card:hover {
  border-color: var(--uneh-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.benefit-card-title {
  font-size: var(--text-h2);
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
  letter-spacing: -0.02em;
}

.benefit-card-desc {
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
  flex-grow: 1;
}

@media (max-width: 600px) {
  .benefit-cards {
    grid-template-columns: 1fr;
  }
}

/* CTA strip: single focus */
.cta-strip {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background: var(--surface-subtle);
  padding: var(--s7) var(--s4);
  border-top: 1px solid var(--color-border);
  contain: layout style;
}

.cta-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.cta-strip-headline {
  font-size: clamp(2.25rem, 3.75vw, 3rem);
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 var(--s1);
  border: none;
  padding: 0;
  letter-spacing: -0.02em;
}

.cta-strip-desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin: 0 0 var(--s5);
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.cta-strip .btn-large {
  min-height: var(--touch-target);
}

/* Legacy hero block (inner pages that may still use it) */
.hero-block {
  background: linear-gradient(135deg, var(--uneh-green-light) 0%, var(--uneh-gold-light) 100%);
  border-radius: var(--radius);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
  border-left: 4px solid var(--uneh-green);
}

.hero-block .lead {
  font-size: var(--text-lead);
  color: var(--color-text);
  margin-bottom: 0;
}

.hero-block p {
  font-size: 1.3rem;
}

/* Home page sections: generous whitespace */
.home-section {
  margin-bottom: 0;
  padding: var(--s7) 0;
  border-bottom: none;
}

.home-section:last-of-type {
  border-bottom: none;
}

.home-section .section-title {
  font-size: var(--text-h2);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: var(--s2);
}

.section-lead {
  font-size: var(--text-lead);
  color: var(--color-text-muted);
  margin-bottom: var(--s4);
  line-height: 1.6;
}

/* Why UNEH: value pillars */
.why-uneh-section {
  padding: var(--s7) 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 400px;
}

.why-uneh-subsection {
  margin-bottom: var(--s6);
  padding-bottom: var(--s6);
  border-bottom: 1px solid var(--color-border);
}

.why-uneh-subsection:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.why-uneh-subtitle {
  font-size: var(--text-h3);
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 var(--s1);
  letter-spacing: -0.02em;
}

.why-uneh-subdesc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin: 0 0 var(--s3);
  line-height: 1.5;
}

.why-uneh-why-matters {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin: var(--s2) 0 var(--s2);
  line-height: 1.6;
  font-style: normal;
}

.why-uneh-link-wrap {
  margin: var(--s3) 0 0;
}

.why-uneh-link-wrap .cta-link {
  font-weight: 600;
}

.why-uneh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--s3);
  margin-top: 0;
}

.why-uneh-box {
  margin: 0;
  padding: var(--s4);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: var(--text-base);
  line-height: 1.6;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.why-uneh-box:hover {
  border-color: var(--uneh-green-light);
  box-shadow: var(--shadow-md);
}

.why-uneh-box p {
  margin: 0;
}

.why-uneh-box strong {
  color: var(--uneh-green-dark);
  font-weight: 600;
}

/* News: bottom of home */
.news-row-section {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  padding: var(--s6) var(--s4);
  background: var(--surface-subtle);
  border-top: 1px solid var(--color-border);
  content-visibility: auto;
}

.news-row-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.news-row-box {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--s5);
  box-shadow: var(--shadow);
  margin-top: var(--s3);
}

.cta-button {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  background: var(--uneh-green);
  color: #fff !important;
  border-radius: var(--radius);
  font-weight: 600;
}

.cta-button:hover {
  background: var(--uneh-green-dark);
  text-decoration: none;
}

.glance-quotes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space);
}

.glance-box {
  margin: 0;
  padding: var(--space-lg);
  background: var(--uneh-green-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--uneh-green);
  font-size: 1.25rem;
}

.glance-box p { margin: 0; }

/* Inner pages: intro block (below banner) */
.page-intro {
  padding: var(--s5) 0 var(--s4);
}

.page-intro h1 {
  font-size: var(--text-h1);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s2);
  color: var(--color-text);
}

.page-intro .section-lead {
  margin-bottom: 0;
  max-width: 42rem;
}

/* News page */
.news-page-section {
  padding: var(--s6) 0;
}

.news-section-header {
  font-size: var(--text-h2);
  font-weight: 600;
  margin-bottom: var(--s3);
  letter-spacing: -0.02em;
}

.news-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.news-row {
  padding: var(--s4) 0;
  border-bottom: 1px solid var(--color-border);
  display: block;
}

.news-row:last-child {
  border-bottom: none;
}

.news-row-date {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  display: block;
  margin-bottom: var(--s1);
}

.news-row-title {
  margin: 0 0 var(--s1);
  font-size: var(--text-h3);
  font-weight: 600;
}

.news-row-title a {
  color: var(--color-text);
}

.news-row-title a:hover {
  color: var(--uneh-green);
  text-decoration: none;
}

.news-row-excerpt {
  font-size: var(--text-base);
  line-height: 1.6;
  margin: 0 0 var(--s2);
  color: var(--color-text-muted);
}

/* Legacy news cards (e.g. home page sidebar) */
.news-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--s5);
}

.news-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg);
  box-shadow: var(--shadow);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
  border-color: var(--uneh-green-light);
  box-shadow: var(--shadow-md);
}

.news-card-inner {
  padding: var(--s5);
}

.news-card-date {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  display: block;
  margin-bottom: var(--s1);
}

.news-card-title {
  margin: 0 0 var(--s2);
  font-size: var(--text-h3);
  font-weight: 600;
}

.news-card-title a {
  color: var(--color-text);
}

.news-card-title a:hover {
  color: var(--uneh-green);
  text-decoration: none;
}

.news-card-excerpt {
  font-size: var(--text-base);
  line-height: 1.6;
  margin: 0 0 var(--s3);
  color: var(--color-text-muted);
}

/* Investors */
.investor-section {
  padding: 0 0 var(--s6);
  border-bottom: 1px solid var(--color-border);
}

.investor-section:last-child {
  border-bottom: none;
}

.investor-section-title {
  font-size: var(--text-h2);
  font-weight: 600;
  margin-bottom: var(--s3);
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.growth-strategy-intro {
  font-size: var(--text-lead);
  line-height: 1.65;
  margin: 0 0 var(--s5);
  max-width: 52rem;
  color: var(--color-text);
}

.growth-strategy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5);
  margin-top: var(--s4);
}

.growth-strategy-pillar {
  padding: var(--s5);
  background: var(--surface-subtle);
  border-radius: var(--radius);
  border-left: 4px solid var(--uneh-green);
}

.growth-strategy-pillar-title {
  font-size: var(--text-h3);
  font-weight: 600;
  margin: 0 0 var(--s3);
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.growth-strategy-pillar p {
  margin: 0 0 var(--s3);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text);
}

.growth-strategy-pillar p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .growth-strategy-grid {
    grid-template-columns: 1fr;
  }
}

.investor-box {
  padding: var(--s5);
  background: var(--surface-subtle);
  border-radius: var(--radius);
  border-left: 4px solid var(--uneh-green);
  margin-bottom: var(--s3);
}

.investor-box p {
  margin: 0 0 var(--s2);
  font-size: var(--text-lead);
  line-height: 1.6;
}

.investor-box p:last-child {
  margin-bottom: 0;
}

.investor-highlights {
  display: grid;
  gap: var(--s3);
}

.investor-quote {
  margin: 0;
  padding: var(--s4);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: var(--text-base);
  line-height: 1.6;
}

.investor-quote p {
  margin: 0;
}

.investor-table-wrap {
  overflow-x: auto;
  margin-top: var(--s3);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.investor-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-base);
}

.investor-table th,
.investor-table td {
  padding: var(--s3) var(--s4);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.investor-table th {
  background: var(--surface-subtle);
  font-weight: 600;
  color: var(--color-text);
}

.investor-table tbody tr:last-child td {
  border-bottom: none;
}

.investor-table tbody tr:hover {
  background: var(--surface-subtle);
}

.investor-figure {
  margin: var(--s4) 0 0;
}

.investor-figure-placeholder {
  padding: var(--s6);
  background: var(--surface-subtle);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius);
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--text-base);
}

.investor-figure figcaption {
  margin-top: var(--s1);
  font-size: var(--text-small);
  color: var(--color-text-muted);
}

/* Investment highlights: 3x3 flip cards */
.investor-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin-top: var(--s4);
}

.investor-card {
  perspective: 1000px;
  min-height: 12rem;
}

.investor-card-inner {
  position: relative;
  width: 100%;
  min-height: 12rem;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.investor-card:hover .investor-card-inner {
  transform: rotateY(180deg);
}

.investor-card-front,
.investor-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s4);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-sizing: border-box;
}

.investor-card-front {
  background: var(--surface-subtle);
  color: var(--color-text);
  font-weight: 600;
  font-size: var(--text-base);
  line-height: 1.35;
  text-align: center;
}

.investor-card-back {
  background: var(--surface);
  color: var(--color-text);
  font-size: var(--text-small);
  line-height: 1.5;
  text-align: left;
  transform: rotateY(180deg);
  overflow-y: auto;
}

.investor-card-back-text {
  margin: 0;
  width: 100%;
  min-height: 0;
}

@media (max-width: 900px) {
  .investor-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .investor-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (hover: none) {
  .investor-card:hover .investor-card-inner {
    transform: none;
  }
  .investor-card-back {
    position: relative;
    transform: none;
    backface-visibility: visible;
    margin-top: var(--s2);
    border-top: none;
  }
  .investor-card-inner {
    min-height: auto;
    display: block;
  }
  .investor-card-front {
    position: relative;
  }
}

/* About */
.about-section {
  padding: var(--s6) 0;
}

.about-section.alt {
  background: var(--surface-subtle);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-bottom: var(--s6);
}

.about-section.alt .about-section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0;
}

.about-section-title {
  font-size: var(--text-h2);
  font-weight: 600;
  margin-bottom: var(--s3);
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.about-box {
  padding: var(--s5);
  background: var(--color-bg);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  margin-bottom: var(--s3);
  box-shadow: var(--shadow);
}

.about-box p {
  font-size: var(--text-lead);
  line-height: 1.65;
  margin: 0 0 var(--s2);
}

.about-box p:last-child {
  margin-bottom: 0;
}

.about-large-text {
  font-size: var(--text-lead);
  line-height: 1.7;
  margin: 0;
}

.about-globe-figure {
  margin: var(--s4) 0;
}

.about-globe-placeholder {
  padding: var(--s6);
  background: var(--surface-subtle);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius);
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--text-base);
}

.about-locations {
  display: grid;
  gap: var(--s3);
}

.about-location-quote {
  margin: 0;
  padding: var(--s4);
  border-left: 4px solid var(--uneh-green);
  background: var(--color-bg);
  border-radius: var(--radius);
  font-size: var(--text-base);
  line-height: 1.6;
}

.about-location-quote p {
  margin: 0;
}

.about-structure-figure {
  margin: var(--s4) 0;
}

.about-structure-figure img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.about-figure-placeholder {
  padding: var(--s5);
  background: var(--surface-subtle);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius);
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--text-base);
}

.about-contact-compact .about-box p {
  font-size: var(--text-lead);
}

.about-intro-text {
  font-size: var(--text-lead);
  line-height: 1.7;
  margin: 0 0 var(--s6);
  max-width: 52rem;
}

.about-ip-head {
  font-size: clamp(2.625rem, 4.5vw, 3.75rem);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin: var(--s6) 0 var(--s4);
  line-height: 1.2;
}

.about-team-section .about-ip-head:first-of-type {
  margin-top: var(--s6);
}

.about-ip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
  gap: var(--s3);
  place-items: stretch;
}

.about-ip-box {
  padding: var(--s4);
  background: var(--surface-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 5rem;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}

.about-team-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
  margin-top: var(--s3);
}

.about-team-card-full {
  grid-column: 1 / -1;
}

.about-team-section {
  padding-top: var(--s3);
}

.about-team-card {
  padding: var(--s5);
  background: var(--surface-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s1);
}

@media (max-width: 500px) {
  .about-team-cards {
    grid-template-columns: 1fr;
  }
}

.about-team-value {
  font-size: clamp(2.625rem, 4.5vw, 3.375rem);
  font-weight: 700;
  color: var(--uneh-green);
  display: block;
}

.about-team-label {
  font-size: var(--text-base);
  color: var(--color-text-muted);
}

.about-team-desc {
  font-size: var(--text-lead);
  line-height: 1.65;
  margin: 0;
  text-align: left;
  max-width: 48rem;
}

/* Global Operations: map with overlaid pins (label + description per location) */
.world-map-wrap {
  position: relative;
  min-height: 320px;
  margin: var(--s5) 0;
  border-radius: var(--radius);
  overflow: visible;
  background: var(--surface-subtle);
}

.world-map-img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
}

.world-map-fallback {
  display: none;
  min-height: 280px;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: var(--text-base);
  border-radius: var(--radius);
  background: var(--surface-subtle);
}

.world-map-fallback.is-visible {
  display: flex;
}

.map-pin {
  position: absolute;
  left: var(--pin-x, 50%);
  top: var(--pin-y, 50%);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
  max-width: 280px;
  z-index: 1;
}

.map-pin-marker {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--uneh-green);
  border: 3px solid var(--color-bg);
  box-shadow: var(--shadow-md);
}

.map-pin-content {
  padding: var(--s2) var(--s3);
  background: var(--color-bg);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  font-size: var(--text-small);
  line-height: 1.5;
  color: var(--color-text);
}

.map-pin-content strong {
  display: block;
  font-size: var(--text-base);
  margin-bottom: var(--s1);
  color: var(--color-text);
}

.map-pin-content p {
  margin: 0;
  color: var(--color-text-muted);
}

/* Pin placement: avoid overlap by nudging content left/right where needed */
.map-pin-nevada {
  flex-direction: row;
}

.map-pin-content-left {
  flex-direction: row-reverse;
}

.map-pin-china {
  flex-direction: row;
  max-width: 300px;
}

@media (max-width: 768px) {
  .world-map-wrap {
    min-height: 420px;
  }

  .map-pin {
    max-width: 220px;
  }

  .map-pin-content {
    padding: var(--s1) var(--s2);
    font-size: 0.875rem;
  }
}

.about-structure-cards {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  margin-top: var(--s3);
}

.about-structure-card {
  padding: var(--s5);
  background: var(--surface-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: var(--text-base);
  line-height: 1.65;
  margin: 0;
}

/* Services */
.service-quotes {
  display: grid;
  gap: var(--s3);
  margin: var(--s3) 0;
}

.service-quote {
  margin: 0;
  padding: var(--s4);
  border-left: 4px solid var(--uneh-green);
  background: var(--surface-subtle);
  border-radius: var(--radius);
  font-size: var(--text-base);
  line-height: 1.6;
}

.service-quote p {
  margin: 0;
}

.service-quotes-indent {
  margin-left: var(--s4);
  padding-left: var(--s2);
  border-left: 3px solid var(--uneh-green);
}

.service-quotes-no-border {
  border-left: none;
  padding-left: 0;
  margin-left: 0;
}

@media (max-width: 640px) {
  .service-quotes-indent {
    margin-left: var(--s2);
  }
  .service-quotes-no-border {
    margin-left: 0;
  }
}

.service-intro-box .about-section-title {
  margin-top: 0;
}

.service-intro-box-grey {
  background: var(--surface-subtle);
}

.service-intro-box-white {
  background: var(--surface);
}

.service-quote-large p {
  font-size: var(--text-lead);
  line-height: 1.6;
}

.service-quote-white {
  background: var(--surface);
}

.service-quotes-white-cards .service-quote {
  background: var(--surface);
}

.investor-disclaimer {
  margin: 0 0 var(--s5);
  padding: var(--s4);
  background: var(--surface-subtle);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--uneh-gold);
  border-radius: var(--radius);
  font-size: var(--text-small);
  line-height: 1.6;
  color: var(--color-text-muted);
}

.investor-disclaimer p {
  margin: 0;
}

.investor-disclaimer strong {
  color: var(--color-text);
}

.investor-intro-text {
  font-size: var(--text-lead);
  line-height: 1.65;
  margin: 0;
  max-width: 52rem;
}

.investor-roadmap-text {
  font-size: var(--text-base);
  line-height: 1.65;
  margin: 0 0 var(--s5);
  max-width: 52rem;
}

.roadmap-subsection-title {
  font-size: var(--text-h3);
  font-weight: 600;
  margin: var(--s5) 0 var(--s3);
  color: var(--color-text);
  letter-spacing: -0.02em;
}

/* Footer */
.site-footer {
  margin-top: 0;
  padding: var(--s6) var(--s4);
  background: var(--surface-dark);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-small);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.footer-name {
  font-weight: 600;
  color: #fff;
  margin: 0 0 var(--s2);
  font-size: var(--text-base);
}

.footer-contact {
  margin: 0 0 var(--s3);
  font-size: var(--text-small);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact a {
  color: var(--uneh-green);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
  color: var(--uneh-green-light);
}

.footer-cta {
  margin: 0 0 var(--s3);
}

.footer-cta-link {
  display: inline-block;
  padding: var(--s2) var(--s4);
  background: var(--uneh-green);
  color: #fff !important;
  font-weight: 600;
  font-size: var(--text-small);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.footer-cta-link:hover {
  background: var(--uneh-green-dark);
  color: #fff !important;
  text-decoration: none;
  transform: translateY(-1px);
}

.footer-copy {
  margin: 0;
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.5);
}

/* Typography: larger site-wide */
h1, h2, h3 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.25;
  font-family: var(--font-display);
  color: var(--color-text);
}

h1 { font-size: var(--text-h1); margin-top: 0; font-weight: 700; color: var(--uneh-green-dark); }
h2 { font-size: var(--text-h2); font-weight: 600; border-bottom: 2px solid var(--uneh-green); padding-bottom: 0.3rem; display: inline-block; }
h3 { font-size: var(--text-h3); font-weight: 600; }

p { margin: 0 0 1.15rem; font-size: inherit; }

ul, ol {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}

a {
  color: var(--uneh-green);
  text-decoration: none;
}

a:hover { text-decoration: underline; color: var(--uneh-green-dark); }

/* Images: shrink and contain so they never overflow */
.main img,
.product-detail img,
.product-figures img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Highlight list: key stats / highlights */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space);
  margin: var(--space-lg) 0;
}

.highlights li {
  background: var(--color-bg);
  border-left: 4px solid var(--uneh-green);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  list-style: none;
  margin: 0;
  padding-left: 1.25rem;
  box-shadow: var(--shadow);
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.product-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.product-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--uneh-green);
}

.product-card a {
  display: block;
  padding: 1.25rem;
  color: inherit;
  text-decoration: none;
}

.product-card a:hover {
  text-decoration: none;
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  display: block;
  background: var(--color-bg-alt);
}

.product-card h3 { margin-top: 0; margin-bottom: 0.5rem; font-size: 1.4rem; color: var(--uneh-green-dark); }
.product-card p { margin: 0; font-size: 1.2rem; color: var(--color-text-muted); }

/* Product groups (Products index) */
.product-group-section {
  padding: var(--s6) 0;
  border-bottom: 1px solid var(--color-border);
}

.product-group-section:last-child {
  border-bottom: none;
}

.product-group-title {
  font-size: var(--text-h2);
  font-weight: 600;
  margin: 0 0 var(--s4);
  letter-spacing: -0.02em;
  color: var(--color-text);
  padding-bottom: var(--s1);
  border-bottom: 2px solid var(--uneh-green);
  display: inline-block;
}

.product-large-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--s5);
  align-items: start;
  margin-bottom: var(--s5);
  padding: var(--s4);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-large-card:hover {
  border-color: var(--uneh-green-light);
  box-shadow: var(--shadow-md);
}

.product-large-card:last-child {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .product-large-card {
    grid-template-columns: 1fr;
  }
}

.product-large-image {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface-subtle);
}

.product-large-image img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
}

.product-large-heading {
  margin: 0 0 var(--s1);
  font-size: var(--text-h2);
  font-weight: 600;
}

.product-large-heading a {
  color: var(--color-text);
}

.product-large-heading a:hover {
  color: var(--uneh-green);
  text-decoration: none;
}

.product-large-desc {
  font-size: var(--text-lead);
  line-height: 1.6;
  margin: 0 0 var(--s3);
  color: var(--color-text-muted);
}

.product-large-content .cta-link {
  font-weight: 600;
}

/* Product detail (single product pages) */
.product-detail {
  padding-bottom: 0;
}

.product-detail > h1 {
  font-size: var(--text-h1);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s2);
  color: var(--color-text);
}

.product-detail .hero {
  margin-bottom: var(--s5);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--surface-subtle);
}

.product-detail .hero img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  display: block;
  background: var(--surface-subtle);
}

.product-detail .lead {
  display: none;
}

.product-detail-intro .product-detail-lead {
  font-size: var(--text-lead);
  line-height: 1.75;
  margin: 0;
  color: var(--color-text);
}

@media (min-width: 640px) {
  .product-detail-intro .product-detail-lead {
    font-size: 1.3125rem;
  }
}

.product-detail .page-section {
  padding: var(--s5) 0 0 0;
  margin-bottom: 0;
}

.product-detail .page-section .section-title {
  margin-bottom: var(--s3);
}

.product-detail h3 {
  font-size: var(--text-h3);
  margin-top: var(--s4);
  margin-bottom: var(--s1);
}

.product-detail ul {
  margin: var(--s2) 0;
  padding-left: var(--s4);
}

.product-detail .product-figures {
  margin: var(--s4) 0;
  gap: var(--s3);
}

.product-detail .muted {
  font-size: var(--text-small);
  margin-top: var(--s1);
}

.product-detail .back-link {
  display: inline-block;
  margin-top: var(--s4);
  padding: var(--s1) 0;
  font-weight: 500;
}

/* Multi-image blocks on product pages */
.product-figures {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space);
  margin: var(--space-lg) 0;
  padding: 0;
  border: none;
}

.product-figures img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
  background: var(--color-bg-alt);
}

.product-specs {
  list-style: none;
  padding-left: 0;
}

.product-specs li {
  margin-bottom: 0.5rem;
  padding-left: 0;
}

/* Process cards (2x2 or 3x2 grid) */
.process-cards {
  display: grid;
  gap: var(--s4);
  margin-top: var(--s4);
}

.process-cards-2x2 {
  grid-template-columns: repeat(2, 1fr);
}

.process-cards-3x2 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .process-cards-3x2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .process-cards-2x2,
  .process-cards-3x2 {
    grid-template-columns: 1fr;
  }
}

.process-card {
  padding: var(--s5);
  background: var(--surface-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.process-card-title {
  font-size: var(--text-h3);
  font-weight: 600;
  margin: 0;
  color: var(--color-text);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.process-card-body {
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text);
}

.process-card-body p {
  margin: 0;
}

.product-advantages-list {
  list-style: none;
  padding-left: 0;
  margin: var(--s3) 0 0;
}

.product-advantages-list li {
  margin-bottom: var(--s2);
  padding-left: 1.5em;
  position: relative;
}

.product-advantages-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.4em;
  height: 0.4em;
  background: var(--uneh-green);
  border-radius: 50%;
}

.product-spec-figure {
  margin: var(--s5) 0;
  max-width: 100%;
}

.product-spec-figure img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
}

.product-spec-table-wrap {
  margin-top: var(--s4);
  overflow-x: auto;
}

.product-spec-table {
  width: 100%;
  min-width: 28rem;
  border-collapse: collapse;
  font-size: var(--text-base);
}

.product-spec-table td {
  padding: var(--s3) var(--s4);
  border: 1px solid var(--color-border);
  vertical-align: top;
}

.product-spec-table td:first-child {
  font-weight: 600;
  background: var(--surface-subtle);
  width: 40%;
}

.recycled-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s2) var(--s3);
  margin-top: var(--s4);
}

.recycled-flow-step {
  padding: var(--s3) var(--s4);
  background: var(--surface-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: var(--text-base);
  font-weight: 500;
}

.recycled-flow-arrow {
  width: 1rem;
  height: 2px;
  background: var(--uneh-green);
}

.recycled-flow-arrow::after {
  content: "";
  display: none;
}

@media (max-width: 700px) {
  .recycled-flow {
    flex-direction: column;
    align-items: stretch;
  }
  .recycled-flow-arrow {
    width: auto;
    height: 1rem;
    margin-left: var(--s3);
    transform: rotate(90deg);
  }
}

.recycled-outputs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
  margin-top: var(--s4);
}

.recycled-output-box {
  padding: var(--s4);
  background: var(--surface-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: var(--text-base);
  min-height: 4rem;
}

.recycled-output-empty {
  background: transparent;
  border-style: dashed;
}

.recycled-output-header {
  padding: var(--s3) var(--s4);
  background: var(--surface-dark);
  color: #fff;
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.recycled-output-box-caps {
  font-size: var(--text-small);
  letter-spacing: 0.02em;
}

.recycled-process-figure {
  margin-top: var(--s4);
}

.recycled-process-figure img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.recycled-process-placeholder {
  padding: var(--s7);
  background: var(--surface-subtle);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius);
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--text-base);
}

@media (max-width: 600px) {
  .recycled-outputs-grid {
    grid-template-columns: 1fr;
  }
}

/* Form */
.form-group {
  margin-bottom: var(--s4);
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--s1);
  color: var(--color-text);
  font-size: var(--text-base);
}

.form-group input,
.form-group textarea {
  width: 100%;
  max-width: 28rem;
  padding: var(--s2) var(--s3);
  font: inherit;
  font-size: var(--text-base);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--uneh-green);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

button[type="submit"] {
  padding: var(--s2) var(--s4);
  font: inherit;
  font-weight: 600;
  font-size: var(--text-base);
  color: #fff;
  background: var(--uneh-green);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

button[type="submit"]:hover {
  background: var(--uneh-green-dark);
  transform: translateY(-1px);
}

/* Utility */
.lead {
  font-size: var(--text-lead);
  color: var(--color-text-muted);
}

.muted {
  color: var(--color-text-muted);
  font-size: 1.15rem;
}

/* Template-style prominent lead (e.g. hero / section intro) */
.lead-alt {
  font-size: var(--text-lead);
  line-height: 1.65;
  color: var(--color-text);
  margin: 0 0 var(--space-lg);
  font-weight: 500;
}

.contact-info-plain {
  padding: 0;
  border: none;
}

.contact-info-plain.page-section {
  padding: 0;
  margin-bottom: 0;
}

.contact-info-plain p {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.7;
}

.contact-form-section {
  margin-top: 0;
  padding-top: 0;
}

.contact-form-section.page-section {
  padding-top: 0;
}

.contact-block {
  margin-bottom: var(--s4);
  padding: var(--s5);
  background: var(--surface-subtle);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.contact-block p {
  margin: 0;
  font-size: var(--text-lead);
  line-height: 1.6;
}

.news-list { list-style: none; padding: 0; margin: 1rem 0; }
.news-list li { margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--color-border); }
.news-list li:last-child { border-bottom: none; }
.news-list a { font-weight: 600; }

.news-list-with-blurb .news-list-item { padding-bottom: 1.25rem; }
.news-list-with-blurb .news-list-link { display: block; margin-bottom: 0.25rem; }
.news-list-with-blurb .news-list-date { font-size: 0.9rem; }
.news-list-with-blurb .news-list-blurb { margin: 0.5rem 0 0; font-size: 1.2rem; color: var(--color-text-muted); line-height: 1.55; }

/* CTA link */
.cta-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--uneh-green);
}

.cta-link:hover {
  color: var(--uneh-green-dark);
  text-decoration: none;
}

/* Back link */
.back-link {
  font-size: 1.15rem;
  color: var(--color-text-muted);
}

.text-center {
  text-align: center;
}

.back-link:hover {
  color: var(--uneh-green);
}
