/* =========================================================
   Jingtian Mechanical — Site Design System
   Aesthetic: Premium Industrial · Deep Field Green · Harvest Gold
   (Aligned with homepage home.css language)
   ========================================================= */

:root {
  /* Brand */
  --green-950: #050f0b;
  --green-900: #0a1f16;
  --green-800: #0f3d2e;
  --green-700: #165a42;
  --green-600: #1d7a58;
  --green-100: #e6f2ec;
  --green-50: #f2f8f5;

  --gold-500: #e8a317;
  --gold-400: #f0b83a;
  --gold-600: #c4870e;
  --gold-100: #fdf6e6;

  --earth-900: #1c1917;
  --earth-700: #44403c;
  --earth-500: #78716c;
  --earth-300: #d6d3d1;
  --earth-100: #f5f5f4;
  --cream: #f7f4ee;
  --white: #ffffff;

  /* Semantic */
  --bg: var(--cream);
  --bg-alt: var(--white);
  --text: var(--earth-900);
  --text-muted: var(--earth-500);
  --primary: var(--green-800);
  --primary-hover: var(--green-700);
  --accent: var(--gold-500);
  --accent-hover: var(--gold-400);
  --border: rgba(28, 25, 23, 0.08);
  --shadow-sm: 0 1px 0 rgba(6, 26, 18, 0.04);
  --shadow-md: 0 16px 40px rgba(6, 26, 18, 0.08);
  --shadow-lg: 0 24px 60px rgba(6, 26, 18, 0.12);

  /* Layout */
  --container: 1200px;
  --header-container: 1440px;
  --header-h: 80px;
  --radius: 2px;
  --radius-lg: 4px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  /* Type */
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
}

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

/* Utilities */
.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}
.section { padding: 96px 0; }
.section-sm { padding: 56px 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.03em;
  color: var(--green-950);
  text-transform: uppercase;
}
.section-desc {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 1.06rem;
  line-height: 1.7;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold-500);
  color: var(--green-950);
  box-shadow: 0 8px 24px rgba(232, 163, 23, 0.28);
}
.btn-primary:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(232, 163, 23, 0.35);
}
.btn-secondary {
  background: var(--green-800);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--green-700);
  transform: translateY(-2px);
}
.btn-outline {
  border: 1px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green-950);
}
.btn-outline-dark {
  border: 1px solid var(--green-800);
  color: var(--green-800);
  background: transparent;
}
.btn-outline-dark:hover {
  background: var(--green-800);
  color: var(--white);
}
.btn-sm { padding: 10px 16px; font-size: 0.82rem; }
.btn-block { width: 100%; }

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--green-950);
  color: var(--white);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}
/* Header uses a wider max width so nav items don't wrap */
.site-header > .container,
.site-header .header-top .container,
.site-header .header-main.container,
.site-header > .header-top > .container {
  width: min(100% - 32px, var(--header-container));
}
.site-header .container.header-main {
  width: min(100% - 32px, var(--header-container));
}
.header-top {
  background: var(--green-900);
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.header-top a:hover { color: var(--gold-400); }
.header-top-left,
.header-top-right {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.75);
}
.header-top-left span,
.header-top-right a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 12px;
  flex-wrap: nowrap;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, var(--gold-500), var(--gold-600));
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--green-950);
  letter-spacing: -0.02em;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.logo-text small {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-main {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  gap: 0;
  flex-wrap: nowrap;
  min-width: 0;
}
.nav-main > li { position: relative; flex-shrink: 0; }
.nav-main > li > a {
  display: block;
  padding: 8px 9px;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  border-radius: 4px;
  white-space: nowrap;
}
.nav-main > li > a:hover,
.nav-main > li > a.active {
  color: var(--gold-400);
}
.nav-main .has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid currentColor;
  vertical-align: middle;
  opacity: 0.7;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  color: var(--text);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
}
.nav-main > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.95rem;
  color: var(--earth-700);
}
.dropdown a:hover {
  background: var(--green-50);
  color: var(--green-800);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-cta .btn-sm {
  padding: 9px 14px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: clamp(520px, 78vh, 720px);
  display: flex;
  align-items: center;
  background: var(--green-950);
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 26, 18, 0.92) 0%, rgba(6, 26, 18, 0.7) 48%, rgba(6, 26, 18, 0.35) 100%),
    url("https://images.unsplash.com/photo-1625246333195-78d9c38ad449?w=1600&q=80") center/cover no-repeat;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255, 255, 255, 0.015) 40px,
    rgba(255, 255, 255, 0.015) 41px
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 60px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(232, 163, 23, 0.15);
  border: 1px solid rgba(232, 163, 23, 0.4);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-400);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-400);
}
.hero-lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1.1;
}
.hero-stat span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
}

/* ========== CATEGORIES ========== */
.cat-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232, 163, 23, 0.35);
}
.cat-card-img {
  aspect-ratio: 4/3;
  background: linear-gradient(160deg, #e8efe9, #cfdcd3);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}
.cat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.cat-card:hover .cat-card-img img { transform: scale(1.05); }
.cat-card-body { padding: 22px 20px 24px; }
.cat-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green-950);
  margin-bottom: 8px;
}
.cat-card-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.6;
}
.cat-card-body .link-more {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-800);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cat-card-body .link-more:hover { color: var(--gold-600); }

/* ========== PRODUCT CARDS ========== */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232, 163, 23, 0.35);
}
.product-card-img {
  aspect-ratio: 5/4;
  background: linear-gradient(160deg, #e8efe9, #cfdcd3);
  position: relative;
  overflow: hidden;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-img img {
  transform: scale(1.04);
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--green-950);
  color: var(--gold-400);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--radius);
}
.product-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--green-950);
  margin-bottom: 8px;
  line-height: 1.25;
}
.product-hp {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-50);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.product-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex: 1;
  line-height: 1.6;
}
.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.product-specs span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 8px;
  border: 1px solid rgba(28, 25, 23, 0.1);
  border-radius: var(--radius);
  color: var(--earth-700);
  background: transparent;
}
.product-card-actions {
  display: flex;
  gap: 8px;
}
.product-card-actions .btn { flex: 1; padding: 10px 10px; font-size: 0.8rem; }

/* ========== WHY / FEATURES ========== */
.why-section {
  background: linear-gradient(180deg, #06140f 0%, #0a1f16 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-section .section-title { color: var(--white); }
.why-section .section-desc { color: rgba(255, 255, 255, 0.62); }
.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}
.feature-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(232, 163, 23, 0.4);
  transform: translateY(-3px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--gold-500), var(--gold-600));
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--green-950);
  font-size: 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.feature-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

/* ========== ABOUT PREVIEW ========== */
.about-preview {
  background: var(--bg-alt);
}
.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--green-100);
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-badge-float {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  padding: 18px 22px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}
.about-badge-float strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--green-800);
  line-height: 1;
}
.about-badge-float span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.about-content .section-label { text-align: left; }
.about-content .section-title {
  text-align: left;
  margin-bottom: 16px;
}
.about-content p {
  color: var(--text-muted);
  margin-bottom: 14px;
}
.about-list {
  margin: 24px 0 28px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  color: var(--earth-900);
}
.about-list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  box-shadow: inset 0 0 0 4px #fff;
  border: 1px solid rgba(196, 135, 14, 0.35);
}

/* ========== MARKETS ========== */
.markets-section { background: var(--cream); }
.market-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.market-tag {
  padding: 12px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-800);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.market-tag:hover {
  border-color: var(--gold-500);
  color: var(--gold-600);
  transform: translateY(-2px);
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background:
    linear-gradient(105deg, rgba(5, 15, 11, 0.92), rgba(10, 42, 28, 0.8)),
    url("../images/generated/hero-field.jpg") center/cover;
  color: var(--white);
  text-align: center;
  padding: 88px 0;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  line-height: 1.15;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 34rem;
  margin: 0 auto 28px;
  line-height: 1.7;
  font-size: 1.05rem;
}
.cta-banner .hero-actions {
  justify-content: center;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ========== INQUIRY FORM ========== */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green-950);
  margin-bottom: 8px;
}
.form-card > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.65;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--earth-700);
  margin-bottom: 7px;
  font-family: var(--font-display);
}
.form-group label .req { color: #c2410c; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(28, 25, 23, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(29, 122, 88, 0.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ========== NEWS ========== */
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(232, 163, 23, 0.3);
}
.news-card-img {
  aspect-ratio: 16/11;
  background: linear-gradient(160deg, #e8efe9, #cfdcd3);
  overflow: hidden;
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.news-card:hover .news-card-img img {
  transform: scale(1.04);
}
.news-card-body {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-date {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-600);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.news-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--green-950);
  margin-bottom: 10px;
  line-height: 1.3;
}
.news-card-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========== FOOTER ========== */
.site-footer {
  background: #040c09;
  color: rgba(255, 255, 255, 0.72);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 300px;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition);
}
.social-links a:hover {
  background: var(--gold-500);
  color: var(--green-950);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a:hover { color: var(--gold-400); }
.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.footer-contact .icon {
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  color: var(--gold-400);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom a:hover { color: var(--gold-400); }

/* ========== FLOATING CONTACT ========== */
.float-contact {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  color: var(--white);
}
.float-btn:hover { transform: translateX(-4px); }
.float-btn.whatsapp { background: #25d366; }
.float-btn.email { background: var(--green-700); }
.float-btn.inquiry { background: var(--gold-500); color: var(--green-950); }
.float-btn .icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
}

/* ========== PAGE BANNER ========== */
.page-banner {
  position: relative;
  background:
    linear-gradient(180deg, rgba(5, 15, 11, 0.78) 0%, rgba(5, 15, 11, 0.88) 100%),
    linear-gradient(105deg, rgba(5, 15, 11, 0.55), transparent 55%),
    url("../images/generated/hero-field.jpg") center/cover no-repeat;
  color: var(--white);
  padding: 88px 0 72px;
  text-align: center;
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.35;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.5), transparent 80%);
  pointer-events: none;
}
.page-banner .container {
  position: relative;
  z-index: 1;
}
.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.5vw, 3.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  line-height: 1.1;
}
.page-banner > .container > p,
.page-banner .container > p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb .sep { opacity: 0.45; }

/* ========== PRODUCTS PAGE ========== */
/* ========== THANK YOU PAGE ========== */
.thankyou-banner {
  background:
    linear-gradient(100deg, rgba(6, 26, 18, 0.92), rgba(15, 61, 46, 0.86)),
    url("../images/generated/hero-field.jpg") center/cover;
  text-align: center;
}
.thankyou-banner .breadcrumb {
  justify-content: center;
  margin-bottom: 18px;
}
.thankyou-banner .section-label {
  display: inline-block;
}
.thankyou-banner__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green-950);
  background: linear-gradient(145deg, var(--gold-500), var(--gold-600));
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}
.thankyou-banner h1 {
  max-width: 16em;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 14px;
}
.thankyou-banner__lead {
  color: rgba(255, 255, 255, 0.82);
  max-width: 34rem;
  margin: 0 auto 24px;
  line-height: 1.7;
  font-size: 1.05rem;
}
.thankyou-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.thankyou-steps-section {
  background: var(--white);
}
.thankyou-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.thankyou-step {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  background: var(--bg-alt);
  transition: background var(--transition);
}
.thankyou-step:last-child {
  border-right: none;
}
.thankyou-step:hover {
  background: #fcfbf8;
}
.thankyou-step__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(15, 61, 46, 0.28);
  margin-bottom: 14px;
}
.thankyou-step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-950);
  margin: 0 0 10px;
}
.thankyou-step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.thankyou-contact-section {
  background: var(--cream, #f6f3eb);
}
.thankyou-contact {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 32px 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.thankyou-contact .section-label {
  text-align: left;
}
.thankyou-contact > div > p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}
.thankyou-contact__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.thankyou-contact__list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}
.thankyou-contact__list strong {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.thankyou-contact__list a {
  color: var(--green-900);
  font-weight: 600;
  text-decoration: none;
}
.thankyou-contact__list a:hover {
  color: var(--gold-600);
}
.thankyou-products-section {
  background: var(--white);
}
.thankyou-news-section {
  background: var(--bg-alt);
}
.thankyou-section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}
@media (max-width: 900px) {
  .thankyou-steps {
    grid-template-columns: 1fr;
  }
  .thankyou-step {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .thankyou-step:last-child {
    border-bottom: none;
  }
  .thankyou-contact {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }
}

/* ========== NEWS LIST / ARCHIVE ========== */
.news-banner {
  background:
    linear-gradient(100deg, rgba(6, 26, 18, 0.92), rgba(15, 61, 46, 0.84)),
    url("../images/generated/hero-field.jpg") center/cover;
}
.news-banner h1 {
  margin-bottom: 14px;
}
.news-banner__lead {
  color: rgba(255, 255, 255, 0.82);
  max-width: 40rem;
  margin: 0 0 22px;
  line-height: 1.7;
  font-size: 1.05rem;
}
.news-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.news-stats-section {
  background: var(--bg-alt);
}
.news-featured-section {
  background: var(--white);
  padding-top: 48px;
}
.news-featured {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 36px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-alt);
  box-shadow: var(--shadow-sm);
}
.news-featured__media {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/11;
  background: var(--green-100);
}
.news-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-featured:hover .news-featured__media img {
  transform: scale(1.03);
}
.news-featured__badge {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--gold-500), var(--gold-600));
  color: var(--green-950);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.news-featured__body {
  padding: 12px 20px 12px 8px;
}
.news-featured__body .section-label {
  text-align: left;
}
.news-featured__cat {
  display: inline-block;
  margin: 4px 0 10px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.news-featured__body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--green-950);
  line-height: 1.25;
  margin: 0 0 12px;
}
.news-featured__body h2 a {
  color: inherit;
  text-decoration: none;
}
.news-featured__body h2 a:hover {
  color: var(--green-700);
}
.news-featured__body > p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 14px;
}
.news-featured__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
}
.news-topics-section {
  background: var(--bg-alt);
}
.news-topic-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), transform var(--transition);
  height: 100%;
}
.news-topic-card:hover {
  border-color: rgba(232, 163, 23, 0.4);
  transform: translateY(-3px);
}
.news-topic-card__num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-600);
  margin-bottom: 12px;
}
.news-topic-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green-950);
  margin: 0 0 10px;
  line-height: 1.3;
}
.news-topic-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0 0 16px;
  flex: 1;
}
.news-topic-card__meta {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.news-grid-section {
  background: var(--white);
}
.news-cat-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}
.news-cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--green-900);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.news-cat-chip em {
  font-style: normal;
  opacity: 0.65;
  font-weight: 600;
}
.news-cat-chip:hover,
.news-cat-chip.is-active {
  border-color: rgba(232, 163, 23, 0.5);
  background: rgba(232, 163, 23, 0.12);
  color: var(--gold-600);
}
.news-card--rich .news-card-body {
  gap: 0;
}
.news-card-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.news-card-cat {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-600);
  text-decoration: none;
}
.news-card-cat:hover {
  color: var(--green-800);
}
.news-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}
.news-card-more {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--green-800);
  text-decoration: none;
}
.news-card-more:hover {
  color: var(--gold-600);
}
.news-pagination {
  margin-top: 40px;
  text-align: center;
}
.news-pagination .nav-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
.news-pagination .page-numbers {
  display: inline-flex;
  min-width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--green-900);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
.news-pagination .page-numbers.current,
.news-pagination .page-numbers:hover {
  border-color: rgba(232, 163, 23, 0.5);
  background: rgba(232, 163, 23, 0.12);
  color: var(--gold-600);
}
.news-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 40px 0;
}
.news-back {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.news-cta-section {
  background: var(--bg-alt);
}
.news-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(15, 61, 46, 0.04), rgba(232, 163, 23, 0.07)),
    var(--white);
  box-shadow: var(--shadow-sm);
}
.news-cta__copy {
  flex: 1 1 280px;
  max-width: 40rem;
}
.news-cta__copy .section-label {
  text-align: left;
}
.news-cta__copy p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.news-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 1024px) {
  .news-featured {
    grid-template-columns: 1fr;
  }
  .news-featured__body {
    padding: 8px 12px 20px;
  }
}
@media (max-width: 600px) {
  .news-cta {
    padding: 28px 20px;
  }
}

/* ========== PRODUCTS PAGE EXTRAS ========== */
.products-banner {
  background:
    linear-gradient(100deg, rgba(6, 26, 18, 0.9), rgba(15, 61, 46, 0.85)),
    url("../images/generated/hero-field.jpg") center/cover;
}
.products-banner__lead {
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin: 0 auto 12px;
  line-height: 1.65;
}
.products-stats-section {
  background: var(--bg-alt);
}
.products-guide-section {
  background: var(--white);
  padding-top: 48px;
  padding-bottom: 24px;
}
.products-guide {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 32px;
  align-items: stretch;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(15, 61, 46, 0.03), rgba(232, 163, 23, 0.06)),
    var(--bg-alt);
  box-shadow: var(--shadow-sm);
}
.products-guide__copy .section-label {
  text-align: left;
}
.products-guide__copy > p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 18px;
  max-width: 34rem;
}
.products-guide__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.products-guide__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.products-guide-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 4px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition), transform var(--transition);
}
.products-guide-card:hover {
  border-color: rgba(232, 163, 23, 0.45);
  transform: translateY(-2px);
}
.products-guide-card__num {
  grid-row: 1 / span 2;
  align-self: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--gold-600);
}
.products-guide-card strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-950);
}
.products-guide-card span:last-child {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}
.products-inquire-section {
  background: var(--cream, #f6f3eb);
}
.products-inquire {
  display: grid;
  grid-template-columns: 1fr 1.5fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.products-inquire__head .section-label {
  text-align: left;
}
.products-inquire__head > p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}
.products-inquire__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.products-inquire-step {
  padding: 14px 12px;
  border-radius: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}
.products-inquire-step__num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-600);
  margin-bottom: 6px;
}
.products-inquire-step strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green-950);
  margin-bottom: 4px;
}
.products-inquire-step span:last-child {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.products-inquire__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 140px;
}
.products-hot-section {
  background: var(--white);
  padding-top: 40px;
}
.products-hot-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.products-hot-bar .section-head {
  text-align: left;
  max-width: 40rem;
  margin: 0;
}
.products-hot-bar .section-head .section-label,
.products-hot-bar .section-head .section-title {
  text-align: left;
}
.products-hot-bar .section-desc {
  margin-left: 0;
  margin-right: 0;
}
.products-hot-grid .product-card {
  height: 100%;
}
.products-oem-strip {
  background: var(--bg-alt);
  padding-top: 40px;
  padding-bottom: 40px;
}
.sidebar-help {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.sidebar-help p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.55;
}
.sidebar-help__phone {
  margin-top: 12px !important;
  margin-bottom: 8px !important;
  font-size: 0.9rem !important;
}
.sidebar-help__phone a {
  color: var(--green-900);
  font-weight: 600;
  text-decoration: none;
}
.sidebar-help__phone a:hover {
  color: var(--gold-600);
}

.products-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  align-items: start;
}
.sidebar {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 24px 20px;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-sm);
}
.sidebar h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-950);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold-500);
}
.sidebar-nav a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--earth-700);
  margin-bottom: 2px;
  transition: all var(--transition);
}
.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: var(--green-50);
  color: var(--green-800);
  font-weight: 600;
}
.products-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.products-toolbar p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ========== PRODUCT DETAIL ========== */
.product-crumb {
  background: var(--green-950);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 0;
}
.product-crumb__nav {
  justify-content: flex-start;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}
.product-crumb__nav a {
  color: rgba(255, 255, 255, 0.72);
}
.product-crumb__nav a:hover {
  color: var(--gold-400);
}
.product-crumb__nav .sep {
  color: rgba(255, 255, 255, 0.28);
}
.product-crumb__nav span:last-child {
  color: rgba(255, 255, 255, 0.92);
}

.product-hero {
  padding: 36px 0 48px;
  background:
    linear-gradient(180deg, rgba(5, 15, 11, 0.03) 0%, transparent 120px),
    var(--bg);
}

.detail-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 36px;
  align-items: start;
}
.detail-gallery {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.detail-main-img {
  aspect-ratio: 4/3;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(232, 163, 23, 0.08), transparent 50%),
    linear-gradient(165deg, #eef4f0 0%, #d5e0d8 100%);
  position: relative;
}
.detail-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 8px;
  padding: 12px 14px 14px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.detail-thumbs button {
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--earth-100);
  padding: 0;
  transition: border-color var(--transition), transform var(--transition);
  cursor: pointer;
}
.detail-thumbs button.active,
.detail-thumbs button:hover {
  border-color: var(--gold-500);
}
.detail-thumbs button.active {
  box-shadow: 0 0 0 1px rgba(232, 163, 23, 0.25);
}
.detail-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-info__panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-md);
}
.detail-kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 10px;
}
.detail-info h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.25rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green-950);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  line-height: 1.15;
}
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.detail-meta span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--green-50);
  color: var(--green-700);
  font-family: var(--font-display);
  border: 1px solid rgba(22, 90, 66, 0.12);
}
.detail-info .lead {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.7;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.detail-specs {
  margin-bottom: 22px;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--green-50) 0%, var(--white) 48px);
}
.detail-specs__title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-800);
  padding: 12px 16px 8px;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  font-size: 0.92rem;
}
.spec-table tr {
  border-bottom: 1px solid var(--border);
}
.spec-table tr:last-child {
  border-bottom: none;
}
.spec-table tr:nth-child(even) {
  background: rgba(242, 248, 245, 0.45);
}
.spec-table th,
.spec-table td {
  padding: 10px 16px;
  text-align: left;
  vertical-align: top;
}
.spec-table th {
  width: 42%;
  color: var(--text-muted);
  font-weight: 500;
}
.spec-table td {
  font-weight: 600;
  color: var(--green-900);
}

.detail-actions {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.detail-actions .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.detail-actions-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 16px;
}
.detail-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-800);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.detail-link:hover {
  color: var(--gold-600);
  border-bottom-color: rgba(196, 135, 14, 0.4);
}
.detail-contact-line {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0 0 16px;
  padding: 12px 14px;
  background: var(--cream);
  border-radius: 4px;
  border: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
}
.detail-contact-line a {
  color: var(--green-800);
  font-weight: 600;
  text-decoration: none;
}
.detail-contact-line a:hover {
  color: var(--gold-600);
}
.detail-contact-line__dot {
  opacity: 0.45;
}
.detail-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.detail-trust li {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-800);
  display: flex;
  align-items: center;
  gap: 6px;
}
.detail-trust li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  flex-shrink: 0;
}

/* Module rhythm */
.product-module {
  padding: 64px 0;
}
.product-module--tight {
  padding: 0 0 48px;
}
.product-module + .product-module {
  border-top: 1px solid var(--border);
}
.section-head--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 640px;
}
.section-head--left .section-desc {
  margin-left: 0;
  margin-right: 0;
}
.section-title--sm {
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  text-align: left;
  margin-bottom: 12px;
}

/* Tabs */
.detail-tabs-section {
  background: var(--white);
}
.detail-tabs {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  overflow-x: auto;
  scrollbar-width: thin;
}
.tab-nav button {
  padding: 16px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  background: transparent;
}
.tab-nav button:hover {
  color: var(--green-800);
  background: var(--green-50);
}
.tab-nav button.active {
  color: var(--green-950);
  border-bottom-color: var(--gold-500);
  background: var(--bg);
}
.tab-panel {
  display: none;
  color: var(--text-muted);
  line-height: 1.75;
  padding: 28px 32px 36px;
}
.tab-panel.active { display: block; }
.tab-panel h3 {
  font-family: var(--font-display);
  color: var(--green-950);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}
.tab-panel__prose p {
  margin-bottom: 1em;
}
.tab-panel__prose p:last-child {
  margin-bottom: 0;
}
.tab-panel ul:not(.detail-check-list) {
  list-style: disc;
  padding-left: 20px;
  margin: 12px 0;
}
.tab-panel li { margin-bottom: 6px; }

.detail-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.detail-check-list li {
  position: relative;
  padding: 10px 12px 10px 36px;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.95rem;
  color: var(--earth-700);
  line-height: 1.45;
}
.detail-check-list li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-600);
}
.detail-check-list--gold li::before {
  color: var(--gold-600);
}

.detail-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.detail-faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 16px 18px;
  border-left: 3px solid var(--gold-500);
}
.detail-faq-item__q {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--green-950);
  margin-bottom: 6px;
  line-height: 1.35;
}
.detail-faq-item__a {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ========== ABOUT PAGE ========== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 8px 0 0;
}
.stat-box {
  text-align: center;
  padding: 32px 18px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), transform var(--transition);
}
.stat-box:hover {
  border-color: rgba(232, 163, 23, 0.35);
  transform: translateY(-2px);
}
.stat-box strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green-950);
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat-box span {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.about-stats-section {
  background: var(--cream, #f6f3eb);
}
.about-mission-section {
  background: var(--bg-alt);
}
.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.about-mission-copy .section-title {
  margin-bottom: 16px;
}
.about-mission-copy > p {
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.7;
}
.about-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.about-value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), transform var(--transition);
}
.about-value-card:hover {
  border-color: rgba(232, 163, 23, 0.4);
  transform: translateY(-2px);
}
.about-value-card__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--gold-600);
  margin-bottom: 10px;
}
.about-value-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green-900);
  margin-bottom: 8px;
}
.about-value-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}
.about-timeline-section {
  background: var(--white);
}
.about-timeline-layout {
  align-items: start;
}
.timeline {
  position: relative;
  padding-left: 32px;
  border-left: 3px solid var(--green-100);
  margin-top: 8px;
}
.timeline-item {
  position: relative;
  padding-bottom: 28px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -41px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold-500);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold-500);
}
.timeline-item h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-800);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.timeline-item p { color: var(--text-muted); line-height: 1.65; }
.about-capabilities-section {
  background: var(--bg-alt);
}
.about-cap-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  height: 100%;
}
.about-cap-card:hover {
  border-color: rgba(232, 163, 23, 0.45);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.about-cap-card__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold-600);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.about-cap-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green-900);
  margin-bottom: 10px;
}
.about-cap-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 16px;
}
.about-cap-card__link {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.about-quality-section {
  background: var(--white);
}
.about-quality-card {
  text-align: left;
  padding: 28px 22px;
}
.about-quality-card strong {
  color: var(--gold-600);
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.about-quality-card__title {
  display: block !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green-900) !important;
  margin-bottom: 8px;
}
.about-quality-card span:last-child {
  display: block;
  line-height: 1.6;
}

/* ========== FACTORY PAGE ========== */
.factory-intro {
  background: var(--bg-alt);
}
.factory-stats-section {
  background: var(--cream, #f6f3eb);
}
.factory-workshops-section {
  background: var(--white);
}
.factory-ws-card {
  cursor: default;
}
.factory-process-section {
  background: var(--bg-alt);
}
.factory-process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}
.factory-process-step {
  padding: 28px 20px;
  border-right: 1px solid var(--border);
  background: var(--white);
  transition: background var(--transition);
}
.factory-process-step:last-child {
  border-right: none;
}
.factory-process-step:hover {
  background: #fcfbf8;
}
.factory-process-step__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(15, 61, 46, 0.28);
  margin-bottom: 14px;
}
.factory-process-step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green-950);
  margin-bottom: 10px;
}
.factory-process-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}
.factory-gallery-section {
  background: var(--bg-alt);
}
.factory-export-section {
  background: var(--white);
}
.factory-export-layout {
  align-items: start;
}
.factory-export-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.factory-export-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  transition: border-color var(--transition), transform var(--transition);
}
.factory-export-card:hover {
  border-color: rgba(232, 163, 23, 0.4);
  transform: translateY(-2px);
}
.factory-export-card > span {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--gold-600);
  margin-bottom: 8px;
}
.factory-export-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green-900);
  margin-bottom: 8px;
}
.factory-export-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}
.factory-advantages-section {
  background: var(--cream, #f6f3eb);
}
.factory-oem-strip {
  background: var(--white);
  padding-top: 48px;
  padding-bottom: 48px;
}
.factory-oem-strip__inner {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 32px;
  align-items: center;
  padding: 36px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(15, 61, 46, 0.04), rgba(232, 163, 23, 0.06)),
    var(--white);
  box-shadow: var(--shadow-sm);
}
.factory-oem-strip__inner p {
  color: var(--text-muted);
  max-width: 40rem;
  margin: 0;
  line-height: 1.7;
}
.factory-oem-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

/* —— Certificate wall —— */
.factory-certs-section {
  background: var(--cream, #f6f3eb);
}
.factory-certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.factory-cert-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.factory-cert-card:hover {
  border-color: rgba(232, 163, 23, 0.4);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.factory-cert-card__badge {
  position: relative;
  min-height: 160px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background:
    linear-gradient(145deg, rgba(15, 61, 46, 0.06), rgba(232, 163, 23, 0.1)),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 10px,
      rgba(15, 61, 46, 0.02) 10px,
      rgba(15, 61, 46, 0.02) 11px
    ),
    #fbfaf6;
  border-bottom: 1px solid var(--border);
}
.factory-cert-seal {
  position: relative;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
}
.factory-cert-seal__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(196, 135, 14, 0.55);
  box-shadow: inset 0 0 0 6px rgba(15, 61, 46, 0.06);
}
.factory-cert-seal strong {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-900);
  text-align: center;
  max-width: 64px;
  line-height: 1.2;
}
.factory-cert-card__issuer {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.factory-cert-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  padding: 0;
  border: 0;
  cursor: zoom-in;
  background: #e8efe9;
  overflow: hidden;
}
.factory-cert-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.factory-cert-card:hover .factory-cert-card__media img {
  transform: scale(1.04);
}
.factory-cert-card__zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(5, 15, 11, 0.78);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.factory-cert-card__body {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.factory-cert-card__index {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-600);
  margin-bottom: 8px;
}
.factory-cert-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green-900);
  margin-bottom: 10px;
  line-height: 1.3;
}
.factory-cert-card__body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 14px;
  flex: 1;
}
.factory-cert-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.factory-cert-card__meta span {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(15, 61, 46, 0.06);
  color: var(--green-800);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.factory-certs-note {
  text-align: center;
  color: var(--text-muted);
  max-width: 40rem;
  margin: 28px auto 18px;
  line-height: 1.65;
  font-size: 0.95rem;
}
.factory-certs-actions {
  text-align: center;
}
.jt-cert-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5, 15, 11, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 20px 28px;
  gap: 14px;
}
.jt-cert-lightbox[hidden] {
  display: none !important;
}
.jt-cert-lightbox img {
  max-width: min(920px, 100%);
  max-height: min(78vh, 100%);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  background: #fff;
}
.jt-cert-lightbox__caption {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin: 0;
  text-align: center;
}
.jt-cert-lightbox__close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.jt-cert-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* —— Factory video tour —— */
.factory-video-section {
  background: var(--white);
}
.factory-video-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 40px;
  align-items: center;
}
.factory-video-player {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: #0a1f16;
  aspect-ratio: 16/10;
}
.factory-video-player__poster,
.factory-video-player__frame {
  position: absolute;
  inset: 0;
}
.factory-video-player__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.factory-video-player__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 15, 11, 0.15), rgba(5, 15, 11, 0.55)),
    radial-gradient(circle at center, transparent 20%, rgba(5, 15, 11, 0.35) 100%);
}
.factory-video-player.is-playing .factory-video-player__poster {
  display: none;
}
.factory-video-player__frame iframe,
.factory-video-player__frame video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #000;
}
.factory-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px 12px 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--green-950);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.factory-video-play:hover {
  transform: translate(-50%, -50%) scale(1.04);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34);
}
.factory-video-play--static {
  cursor: default;
  pointer-events: none;
}
.factory-video-play__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-500), var(--gold-600));
  position: relative;
  flex-shrink: 0;
}
.factory-video-play__icon::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 15px;
  border-style: solid;
  border-width: 9px 0 9px 14px;
  border-color: transparent transparent transparent var(--green-950);
}
.factory-video-play__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-right: 6px;
}
.factory-video-player__tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(5, 15, 11, 0.72);
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.factory-video-side .section-label {
  text-align: left;
}
.factory-video-side h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green-950);
  margin: 8px 0 12px;
  line-height: 1.2;
}
.factory-video-side > p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}
.factory-video-hint {
  margin: 8px 0 18px !important;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(232, 163, 23, 0.1);
  border: 1px solid rgba(232, 163, 23, 0.28);
  color: var(--earth-900) !important;
  font-size: 0.9rem;
}
.factory-video-side__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* ========== SERVICE PAGE ========== */
.service-intro {
  background: var(--bg-alt);
}
.service-stats-section {
  background: var(--cream, #f6f3eb);
}
.service-stages-section {
  background: var(--white);
}
.service-details-section {
  background: var(--bg-alt);
}
.service-process-section {
  background: var(--white);
}
.service-audience-section {
  background: var(--bg-alt);
}
.service-promise-section {
  background: var(--white);
}
.service-promise-layout {
  align-items: start;
}
.service-channel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.service-contact-grid .feature-card {
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-contact-card:hover {
  border-color: rgba(232, 163, 23, 0.45);
}
.service-faq-section {
  background: var(--bg-alt);
}

/* ========== CASES PAGE EXTRAS ========== */
.cases-banner {
  background:
    linear-gradient(100deg, rgba(6, 26, 18, 0.92), rgba(15, 61, 46, 0.84)),
    url("../images/generated/case-container.jpg") center/cover;
}
.cases-banner h1 {
  margin-bottom: 14px;
}
.cases-banner__lead {
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
  margin: 0 0 22px;
  line-height: 1.7;
  font-size: 1.05rem;
}
.cases-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cases-stats-section {
  background: var(--bg-alt);
}
.cases-types-section {
  background: var(--white);
}
.cases-type-card {
  cursor: default;
}
.cases-featured-section {
  background: var(--bg-alt);
}
.cases-featured-layout {
  align-items: center;
}
.cases-featured-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--green-100);
  box-shadow: var(--shadow-md);
}
.cases-featured-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cases-featured-visual .case-card-badge {
  z-index: 2;
}
.cases-grid-section {
  background: var(--white);
}
.cases-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}
.cases-filter-btn {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--green-900);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.cases-filter-btn:hover,
.cases-filter-btn.is-active {
  border-color: rgba(232, 163, 23, 0.55);
  background: rgba(232, 163, 23, 0.12);
  color: var(--gold-600);
}
.case-card.is-hidden {
  display: none;
}
.cases-process-section {
  background: var(--bg-alt);
}
.cases-faq-section {
  background: var(--white);
}
.cases-next-strip {
  background: var(--bg-alt);
  padding-top: 48px;
  padding-bottom: 48px;
}

/* ========== DEALERSHIP PAGE ========== */
.dealer-intro {
  background: var(--bg-alt);
}
.dealer-stats-section {
  background: var(--cream, #f6f3eb);
}
.dealer-benefits-section {
  background: var(--white);
}
.dealer-profile-section {
  background: var(--bg-alt);
}
.dealer-profile-card {
  cursor: default;
}
.dealer-req-section {
  background: var(--white);
}
.dealer-req-layout {
  align-items: start;
}
.dealer-support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.dealer-process-section {
  background: var(--bg-alt);
}
.dealer-lineup-section {
  background: var(--white);
}
.dealer-faq-section {
  background: var(--bg-alt);
}
.dealer-apply-strip {
  background: var(--white);
  padding-top: 48px;
  padding-bottom: 48px;
}

/* ========== NEWS / ARTICLE SINGLE ========== */
.article-banner .breadcrumb {
  margin-bottom: 16px;
}
.article-banner h1 {
  max-width: 18em;
  margin-bottom: 16px;
}
.article-banner__cat {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(232, 163, 23, 0.16);
  color: var(--gold-400, #e8a317);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}
.article-meta__item strong {
  color: #fff;
  font-weight: 600;
}
.article-meta__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}
.article-section {
  background: var(--bg-alt);
  padding-top: 48px;
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: start;
}
.article-main {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px 40px;
  box-shadow: var(--shadow-sm);
}
.article-hero {
  margin: 0 0 28px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--green-100);
}
.article-hero img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
}
.article-hero figcaption {
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: #f8f7f4;
}
.article-lead {
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--earth-900);
  margin: 0 0 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.article-takeaways {
  background:
    linear-gradient(135deg, rgba(15, 61, 46, 0.04), rgba(232, 163, 23, 0.08)),
    var(--bg-alt);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold-500);
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 28px;
}
.article-takeaways__label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 12px;
}
.article-takeaways ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.article-takeaways li {
  position: relative;
  padding-left: 22px;
  color: var(--earth-900);
  font-weight: 500;
  line-height: 1.5;
  font-size: 0.95rem;
}
.article-takeaways li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
}
.article-toc {
  margin-bottom: 0;
}
.article-toc--inline {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 28px;
}
.article-toc__label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 12px;
}
.article-toc ol {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 8px;
}
.article-toc a {
  color: var(--green-900);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.4;
}
.article-toc a:hover {
  color: var(--gold-600);
}
.article-body {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--earth-900);
}
.article-body > *:first-child {
  margin-top: 0;
}
.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--green-950);
  margin: 2rem 0 0.85rem;
  line-height: 1.25;
  scroll-margin-top: 100px;
}
.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-900);
  margin: 1.5rem 0 0.65rem;
  scroll-margin-top: 100px;
}
.article-body p {
  margin: 0 0 1.05rem;
  color: var(--text-muted);
}
.article-body ul,
.article-body ol {
  margin: 0 0 1.15rem;
  padding-left: 1.35rem;
  color: var(--text-muted);
}
.article-body li {
  margin-bottom: 0.45rem;
  line-height: 1.65;
}
.article-body a {
  color: var(--green-800);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.article-body a:hover {
  color: var(--gold-600);
}
.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 1rem 0;
}
.article-body blockquote {
  margin: 1.4rem 0;
  padding: 16px 20px;
  border-left: 4px solid var(--gold-500);
  background: var(--bg-alt);
  border-radius: 0 10px 10px 0;
  color: var(--earth-900);
  font-style: italic;
}
.article-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.article-tags__label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.article-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.article-tags__list a {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 61, 46, 0.06);
  color: var(--green-900);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}
.article-tags__list a:hover {
  background: rgba(232, 163, 23, 0.16);
  color: var(--gold-600);
}
.article-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.article-share__label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.article-share__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.article-share__links a,
.article-copy-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--green-900);
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}
.article-share__links a:hover,
.article-copy-link:hover {
  border-color: rgba(232, 163, 23, 0.5);
  color: var(--gold-600);
}
.article-author-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  margin-top: 28px;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-alt);
}
.article-author-box__badge {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 6px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--green-950);
  background: linear-gradient(145deg, var(--gold-500), var(--gold-600));
}
.article-author-box__body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--green-950);
  margin-bottom: 8px;
}
.article-author-box__body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 14px;
}
.article-author-box__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.article-adjacent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.article-adjacent__link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 18px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--white);
  text-decoration: none;
  transition: border-color var(--transition), transform var(--transition);
  min-height: 96px;
}
.article-adjacent__link:hover {
  border-color: rgba(232, 163, 23, 0.45);
  transform: translateY(-2px);
}
.article-adjacent__link.is-next {
  text-align: right;
  align-items: flex-end;
}
.article-adjacent__link span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.article-adjacent__link strong {
  font-size: 0.95rem;
  color: var(--green-900);
  line-height: 1.4;
  font-weight: 700;
}
.article-adjacent__link.is-empty {
  border: 0;
  background: transparent;
  pointer-events: none;
}
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}
.article-side-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}
.article-side-cta .section-label {
  text-align: left;
  margin-bottom: 8px;
}
.article-side-cta h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green-950);
  margin: 0 0 10px;
  line-height: 1.25;
}
.article-side-cta p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 16px;
}
.article-side-cta .btn {
  width: 100%;
  margin-bottom: 8px;
  justify-content: center;
}
.article-side-contacts {
  list-style: none;
  margin: 12px 0 0;
  padding: 12px 0 0;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 6px;
}
.article-side-contacts a {
  color: var(--green-900);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}
.article-side-contacts a:hover {
  color: var(--gold-600);
}
.article-side-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.article-side-links a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--bg-alt);
  color: var(--green-900);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.article-side-links a:hover {
  background: rgba(232, 163, 23, 0.12);
  color: var(--gold-600);
}
.article-side-product-list {
  display: grid;
  gap: 12px;
}
.article-side-product {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.article-side-product:hover {
  border-color: rgba(232, 163, 23, 0.35);
  background: var(--bg-alt);
}
.article-side-product img {
  width: 72px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--green-100);
}
.article-side-product strong {
  display: block;
  font-size: 0.88rem;
  color: var(--green-950);
  line-height: 1.3;
  margin-bottom: 4px;
}
.article-side-product em {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--gold-600);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-display);
}
.article-related-section {
  background: var(--white);
}
.article-products-section {
  background: var(--bg-alt);
}
.article-products-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

/* ========== OEM PAGE ========== */
.oem-intro {
  background: var(--bg-alt);
}
.oem-stats-section {
  background: var(--cream, #f6f3eb);
}
.oem-options-section {
  background: var(--white);
}
.oem-audience-section {
  background: var(--bg-alt);
}
.oem-process-section {
  background: var(--white);
}
.oem-packages-section {
  background: var(--cream, #f6f3eb);
}
.oem-package-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.oem-package-card:hover {
  border-color: rgba(232, 163, 23, 0.45);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.oem-package-card__num {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--green-950);
  background: linear-gradient(145deg, var(--gold-500), var(--gold-600));
  margin-bottom: 18px;
}
.oem-package-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green-900);
  margin-bottom: 12px;
}
.oem-package-card p {
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.95rem;
  margin: 0 0 22px;
  flex: 1;
}
.oem-gallery-section {
  background: var(--bg-alt);
}
.oem-faq-section {
  background: var(--white);
}
.oem-faq-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.oem-faq-intro .section-title {
  margin-bottom: 14px;
}
.oem-faq-intro > p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 22px;
}
.oem-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.oem-faq-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0 20px;
  transition: border-color var(--transition);
}
.oem-faq-item[open] {
  border-color: rgba(232, 163, 23, 0.4);
  background: #fff;
}
.oem-faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--green-900);
  padding: 18px 28px 18px 0;
  position: relative;
  line-height: 1.35;
}
.oem-faq-item summary::-webkit-details-marker {
  display: none;
}
.oem-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--gold-600);
  line-height: 1;
}
.oem-faq-item[open] summary::after {
  content: "−";
}
.oem-faq-item p {
  margin: 0;
  padding: 0 8px 18px 0;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ========== CONTACT PAGE ========== */
.contact-main-section {
  background: var(--bg-alt);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: start;
}
.contact-intro {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info-card {
  display: flex;
  gap: 16px;
  padding: 20px 18px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), transform var(--transition);
  text-decoration: none;
  color: inherit;
}
.contact-info-card--link:hover {
  border-color: rgba(232, 163, 23, 0.4);
  transform: translateY(-2px);
}
.contact-info-card:hover {
  border-color: rgba(232, 163, 23, 0.35);
}
.contact-info-card .icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--green-50);
  color: var(--green-700);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
}
.contact-info-card h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-950);
  margin-bottom: 4px;
}
.contact-info-card p,
.contact-info-card a {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}
.contact-info-card a:hover { color: var(--gold-600); }
.contact-info-card__hint {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-600);
  text-decoration: none;
}
.contact-form-alt {
  margin-top: 14px;
  text-align: center;
}
.contact-extra-shortcode,
.contact-page-content {
  margin-top: 20px;
}
.contact-stats-section {
  background: var(--cream, #f6f3eb);
}
.contact-channels-section {
  background: var(--white);
}
.contact-topics-section {
  background: var(--bg-alt);
}
.contact-topics-layout {
  align-items: start;
  gap: 40px;
}
.contact-topics-grid {
  margin-top: 8px;
}
.contact-prepare-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}
.contact-prepare-card .section-label {
  text-align: left;
}
.contact-prepare-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green-950);
  margin: 8px 0 12px;
  line-height: 1.25;
}
.contact-prepare-card > p {
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 8px;
}
.contact-map-section {
  background: var(--white);
}
.contact-map-wrap {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}
.contact-map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  min-height: 420px;
  background: #e8efe9;
}
.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}
.contact-map-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-map-side__card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  flex: 1;
}
.contact-map-side__card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green-950);
  margin: 0 0 12px;
}
.contact-map-side__card > p {
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 16px;
}
.contact-map-side__list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.contact-map-side__list li {
  font-size: 0.95rem;
  color: var(--earth-900);
  line-height: 1.5;
}
.contact-map-side__list strong {
  color: var(--green-900);
  margin-right: 4px;
}
.contact-map-side__list a {
  color: var(--green-800);
  text-decoration: none;
  font-weight: 600;
}
.contact-map-side__list a:hover {
  color: var(--gold-600);
}
.contact-map-side__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.contact-map-note {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  padding: 0 4px;
}
.contact-faq-section {
  background: var(--bg-alt);
}

/* ========== CERTS ========== */
.cert-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.cert-badge {
  min-width: 140px;
  padding: 24px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-950);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), transform var(--transition);
}
.cert-badge:hover {
  border-color: rgba(232, 163, 23, 0.4);
  transform: translateY(-2px);
}
.cert-badge small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 0;
  text-transform: none;
}

/* ========== MOBILE BOTTOM BAR ========== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--green-950);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 0 env(safe-area-inset-bottom);
}
.mobile-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.7rem;
  font-weight: 600;
}
.mobile-bar a .mb-icon { font-size: 1.15rem; }
.mobile-bar a:hover,
.mobile-bar a.active { color: var(--gold-400); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1280px) {
  .logo-text small { display: none; }
  .nav-main > li > a {
    padding: 8px 7px;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
  }
  .header-cta .btn-sm {
    padding: 8px 12px;
    font-size: 0.78rem;
  }
}

@media (max-width: 1100px) {
  .nav-main > li > a {
    padding: 7px 5px;
    font-size: 0.76rem;
    letter-spacing: 0.03em;
  }
  .logo img {
    width: 40px !important;
    height: 40px !important;
  }
  .logo-text strong {
    font-size: 1.2rem;
  }
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .products-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .products-guide {
    grid-template-columns: 1fr;
  }
  .products-inquire {
    grid-template-columns: 1fr;
  }
  .products-inquire__steps {
    grid-template-columns: 1fr 1fr;
  }
  .products-inquire__cta {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .products-hot-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .detail-layout { grid-template-columns: 1fr; gap: 24px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .about-mission-grid { grid-template-columns: 1fr; gap: 32px; }
  .factory-process-steps { grid-template-columns: repeat(3, 1fr); }
  .factory-process-step:nth-child(3) { border-right: none; }
  .factory-process-step:nth-child(n+4) {
    border-top: 1px solid var(--border);
  }
  .factory-oem-strip__inner {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }
  .factory-oem-strip__actions {
    justify-content: flex-start;
  }
  .factory-certs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .factory-video-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .oem-faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-sidebar {
    position: static;
  }
  .dealer-support-grid {
    grid-template-columns: 1fr;
  }
  .service-channel-grid {
    grid-template-columns: 1fr;
  }
  .article-main {
    padding: 28px 22px 32px;
  }
  .article-adjacent {
    grid-template-columns: 1fr;
  }
  .article-adjacent__link.is-next {
    text-align: left;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .header-cta .btn { display: none; }
  .nav-main {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--green-950);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex: none;
    padding: 80px 24px 24px;
    gap: 0;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    z-index: 1001;
  }
  .nav-main.open { transform: translateX(0); }
  .nav-main > li > a {
    padding: 14px 8px;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .site-header .header-top .container,
  .site-header .container.header-main {
    width: min(100% - 40px, var(--container));
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    padding: 0 0 8px 12px;
    display: none;
  }
  .nav-main > li.open .dropdown { display: block; }
  .dropdown a {
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 12px;
  }
  .dropdown a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--gold-400);
  }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }
  .nav-overlay.show { display: block; }
  .grid-2,
  .grid-3,
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map-wrap { grid-template-columns: 1fr; }
  .contact-prepare-card { position: static; }
  .factory-process-steps { grid-template-columns: 1fr 1fr; }
  .factory-process-step {
    border-right: 1px solid var(--border);
  }
  .factory-process-step:nth-child(2n) { border-right: none; }
  .factory-process-step:nth-child(n+3) {
    border-top: 1px solid var(--border);
  }
  .factory-export-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .float-contact { display: none; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 64px; }
  .section { padding: 64px 0; }
  .header-top { display: none; }
}

@media (max-width: 600px) {
  .grid-4,
  .grid-3 { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }
  .factory-certs-grid { grid-template-columns: 1fr; }
  .products-inquire__steps {
    grid-template-columns: 1fr;
  }
  .products-hot-grid {
    grid-template-columns: 1fr !important;
  }
  .product-card-actions { flex-direction: column; }
  .form-card { padding: 24px 18px; }
  .logo-text small { display: none; }
  .factory-video-play__label { display: none; }
  .factory-video-play { padding: 10px; }
  .article-author-box {
    grid-template-columns: 1fr;
  }
}

/* Focus a11y */
:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
}

/* Placeholder tractor silhouettes via CSS when no image */
.ph-tractor {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #d5e5db 0%, #b8d0c2 50%, #9bb8a8 100%);
  color: var(--green-800);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
}
.ph-tractor::before {
  content: "🚜";
  display: block;
  font-size: 3rem;
  margin-bottom: 8px;
  filter: grayscale(0.2);
}

/* Theme inquiry form */
.jt-inquiry-wrap { max-width: 100%; }
.jt-inquiry-form .jt-hp {
  position: absolute !important;
  left: -9999px !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.jt-inquiry-form .form-error {
  color: #b91c1c;
  font-weight: 600;
  margin: 0 0 12px;
  font-size: 0.92rem;
}
.jt-inquiry-form .form-success {
  color: #166534;
  background: #ecfdf5;
  border: 1px solid #86efac;
  padding: 12px 14px;
  border-radius: 4px;
  font-weight: 600;
  margin: 0 0 14px;
  font-size: 0.95rem;
}
.jt-inquiry-form .jt-form-note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.45;
}
.jt-inquiry-form .btn-block { width: 100%; }
/* Use cases */
.detail-usecases {
  background: var(--white);
}
.detail-usecases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.detail-usecase-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 20px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.detail-usecase-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold-500);
  opacity: 0;
  transition: opacity var(--transition);
}
.detail-usecase-card:hover {
  border-color: rgba(232, 163, 23, 0.45);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.detail-usecase-card:hover::after {
  opacity: 1;
}
.detail-usecase-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(196, 135, 14, 0.35);
  margin-bottom: 8px;
  line-height: 1;
}
.detail-usecase-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green-950);
  margin: 0 0 8px;
  line-height: 1.3;
}
.detail-usecase-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* OEM strip on product */
.detail-oem-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  border: 1px solid rgba(15, 61, 46, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(15, 61, 46, 0.92) 0%, rgba(10, 31, 22, 0.96) 55%, rgba(22, 90, 66, 0.9) 100%);
  color: #fff;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.detail-oem-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.5;
  pointer-events: none;
}
.detail-oem-strip__copy,
.detail-oem-strip__actions {
  position: relative;
  z-index: 1;
}
.detail-oem-strip__copy .section-label {
  text-align: left;
  margin-bottom: 8px;
  color: var(--gold-400);
}
.detail-oem-strip__copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.25;
}
.detail-oem-strip__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 36rem;
}
.detail-oem-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.detail-oem-strip__actions .btn-secondary {
  background: var(--gold-500);
  color: var(--green-950);
  border-color: var(--gold-500);
}
.detail-oem-strip__actions .btn-secondary:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
}
.detail-oem-strip__actions .btn-outline-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
}
.detail-oem-strip__actions .btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

/* Inquiry block */
.product-inquiry-block {
  background:
    linear-gradient(180deg, rgba(242, 248, 245, 0.7) 0%, var(--bg) 100%);
}
.product-inquiry-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr;
  gap: 28px;
  align-items: stretch;
}
.product-inquiry-prep {
  background: var(--green-950);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 32px 28px;
  color: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-md);
}
.product-inquiry-prep .section-label {
  text-align: left;
  color: var(--gold-400);
}
.product-inquiry-prep .section-title {
  color: #fff;
}
.product-inquiry-prep > p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin: 0 0 16px;
}
.product-inquiry-prep__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.product-inquiry-prep__list li {
  position: relative;
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
}
.product-inquiry-prep__list li:last-child {
  border-bottom: none;
}
.product-inquiry-prep__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(232, 163, 23, 0.2);
}
.product-inquiry-prep__channels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-inquiry-prep__channels .btn-outline-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.product-inquiry-prep__channels .btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.product-inquiry-form-wrap .form-card,
.product-inquiry-block .form-card {
  margin: 0;
  max-width: none;
  height: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}
.detail-related {
  background: var(--white);
}

/* Sticky product CTA */
.product-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 28px rgba(4, 12, 9, 0.1);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.28s ease;
}
.product-sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.product-sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.product-sticky-cta__info {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.product-sticky-cta__info img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--green-100);
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.product-sticky-cta__info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--green-950);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(48vw, 360px);
}
.product-sticky-cta__info span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.product-sticky-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex-shrink: 0;
}
body.single-product {
  padding-bottom: 0;
}
body.single-product.has-sticky-cta {
  padding-bottom: 76px;
}
@media (max-width: 900px) {
  body.single-product.has-sticky-cta {
    padding-bottom: 128px; /* mobile bar + sticky */
  }
  .product-sticky-cta {
    bottom: 64px; /* above mobile-bar */
  }
  .detail-usecases-grid {
    grid-template-columns: 1fr 1fr;
  }
  .product-inquiry-layout {
    grid-template-columns: 1fr;
  }
  .product-sticky-cta__info span {
    display: none;
  }
  .detail-gallery {
    position: static;
  }
  .detail-actions {
    grid-template-columns: 1fr;
  }
  .detail-check-list {
    grid-template-columns: 1fr;
  }
  .detail-info__panel {
    padding: 22px 18px 20px;
  }
  .tab-panel {
    padding: 22px 18px 28px;
  }
  .product-module {
    padding: 48px 0;
  }
}
@media (max-width: 600px) {
  .detail-usecases-grid {
    grid-template-columns: 1fr;
  }
  .product-sticky-cta__info strong {
    max-width: 42vw;
    font-size: 0.82rem;
  }
  .product-sticky-cta__actions .btn-sm {
    padding: 8px 10px;
    font-size: 0.75rem;
  }
  .product-hero {
    padding: 24px 0 36px;
  }
  .detail-oem-strip {
    padding: 24px 20px;
  }
}

/* Products catalog filters */
.product-card.is-filtered-out { display: none !important; }
.products-section.is-section-hidden { display: none !important; }
.products-section-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 24px;
  border: 1px dashed var(--border);
  border-radius: 4px;
  margin-top: 12px;
  background: var(--bg-alt);
}
.sidebar-nav-filters a.active,
.sidebar-nav-filters a.is-active {
  background: var(--green-50);
  color: var(--green-800);
  font-weight: 600;
}
.products-filter-status {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--green-800);
  font-weight: 600;
}
.products-section.is-section-filtered-empty .products-grid { display: none; }
.products-section.is-section-filtered-empty .products-section-empty { display: block !important; }

/* Product multi-image gallery controls */
.detail-main-img { position: relative; }
.detail-main-img img.is-switching { opacity: 0.85; transition: opacity 0.15s ease; }
.detail-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(5, 15, 11, 0.62);
  color: #fff;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.detail-nav:hover {
  background: rgba(5, 15, 11, 0.85);
  transform: translateY(-50%) scale(1.05);
}
.detail-nav-prev { left: 12px; }
.detail-nav-next { right: 12px; }
.detail-counter {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(5, 15, 11, 0.72);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 11px;
  border-radius: 999px;
  z-index: 2;
  font-variant-numeric: tabular-nums;
  backdrop-filter: blur(4px);
}
@media (max-width: 640px) {
  .detail-nav { width: 34px; height: 34px; font-size: 1.35rem; }
}

/* Product image zoom trigger */
.detail-zoom-trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  position: relative;
}
.detail-zoom-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.detail-zoom-trigger:hover img {
  transform: scale(1.02);
}
.detail-zoom-hint {
  position: absolute;
  left: 12px;
  bottom: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(5, 15, 11, 0.62);
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.9;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease, opacity 0.2s ease;
}
.detail-zoom-trigger:hover .detail-zoom-hint {
  background: rgba(5, 15, 11, 0.85);
  opacity: 1;
}

/* Lightbox */
body.jt-lightbox-open { overflow: hidden; }
.jt-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jt-lightbox[hidden] { display: none !important; }
.jt-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 6, 0.88);
  cursor: zoom-out;
}
.jt-lightbox__stage {
  position: relative;
  z-index: 1;
  max-width: min(96vw, 1200px);
  max-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 56px;
}
.jt-lightbox__img {
  max-width: min(90vw, 1100px);
  max-height: 84vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  background: #0a1510;
  user-select: none;
}
.jt-lightbox__close {
  position: absolute;
  top: 0;
  right: 8px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}
.jt-lightbox__close:hover { background: rgba(255, 255, 255, 0.22); }
.jt-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jt-lightbox__nav:hover { background: rgba(255, 255, 255, 0.22); }
.jt-lightbox__prev { left: 0; }
.jt-lightbox__next { right: 0; }
.jt-lightbox__counter {
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  background: rgba(0, 0, 0, 0.35);
  padding: 4px 12px;
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 640px) {
  .jt-lightbox__stage { padding: 40px 12px 48px; }
  .jt-lightbox__nav { width: 40px; height: 40px; font-size: 1.6rem; }
  .jt-lightbox__prev { left: -4px; }
  .jt-lightbox__next { right: -4px; }
}

/* Cases page */
.cases-markets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: -8px 0 32px;
}
.cases-market-chip {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--green-50, #eef6f1);
  border: 1px solid var(--border);
  color: var(--green-900, #0f3d2e);
  font-size: 0.82rem;
  font-weight: 600;
}
.case-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm, 0 4px 16px rgba(0,0,0,.04));
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
}
.case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(4, 12, 9, 0.1);
}
.case-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #e8efe9;
}
.case-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.case-card:hover .case-card-img img { transform: scale(1.04); }
.case-card-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1;
  background: var(--gold-500, #c9a227);
  color: #04120c;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
}
.case-card-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.case-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}
.case-card-body h3 {
  font-family: var(--font-display, inherit);
  font-size: 1.15rem;
  line-height: 1.3;
  color: var(--green-950, #04120c);
  margin: 0;
}
.case-card-body > p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.case-card-row {
  font-size: 0.86rem;
  color: var(--green-900, #0f3d2e);
  line-height: 1.4;
}
.case-card-row strong { color: var(--green-950, #04120c); }
.case-card-result {
  margin-top: 4px;
  padding: 10px 12px;
  background: var(--green-50, #eef6f1);
  border-left: 3px solid var(--gold-500, #c9a227);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--green-900, #0f3d2e);
  line-height: 1.4;
}
