﻿:root {
  --bg: #ffffff;
  --bg-soft: #f7faf9;
  --text: #1f2933;
  --muted: #667085;
  --primary: #0f766e;
  --primary-dark: #134e4a;
  --accent: #caa46a;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --border: #e5e7eb;
  --topbar: #ffffff;
  --shadow-sm: 0 10px 24px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 18px 36px rgba(15, 23, 42, 0.09);
  --hero-bg: linear-gradient(135deg, #ffffff 0%, #f6fbfa 58%, #eef7f5 100%);
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: #ffffff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
}

.skip-link:focus {
  left: 8px;
  top: 8px;
  padding: 8px 12px;
  background: #fff;
  outline: 2px solid var(--primary);
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

/* Top bar */
/*.top-bar { background: var(--topbar); color: #cbd5e1; font-size: 0.8125rem; } 
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; min-height: 36px; padding: 6px 0; } 
.top-social { display: flex; gap: 14px; } 
.top-social a:hover { color: #fff; } 
.top-contact a:hover { color: #fff; } .sep { margin: 0 8px; opacity: 0.5; }
*/
.top-bar {
  background: rgba(255, 255, 255, 0.94);
  color: var(--muted);
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  position: sticky;
  top: 0;
  z-index: 70;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}


.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 42px;
  padding: 6px 0;
}


.top-social {
  display: flex;
  gap: 14px;
}

.top-social a {
  color: inherit;
  transition: color 0.2s ease;
}

.top-social a:hover {
  color: var(--primary);
}


.top-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;          
  gap: 8px 10px;
}


.top-contact a {
  color: inherit;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;      
  transition: color 0.2s ease;
}

.top-contact a:hover {
  color: var(--primary);
}


.top-contact .sep {
  opacity: 0.5;
  user-select: none;
}


/* Header */
.site-header {
  position: sticky;
  top: 50px;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  margin-top: 8px;
  border-radius: 18px 18px 0 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.mobile-contact-link {
  display: none;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  height: 64px;
}

.site-header .logo {
  flex: 0 0 clamp(180px, 20vw, 260px);
  width: clamp(180px, 20vw, 260px);
  max-width: 260px;
  height: 64px;
  overflow: hidden;
}

.logo img {
  display: block;
  height: 60px;
  width: auto;
  max-width: 380px;
  object-fit: contain;
}

.site-header .logo img {
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  max-height: 100%;
  object-fit: contain;
  object-position: left center;
}

.logo span {
  color: var(--primary);
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 8px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 10px 12px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-link:hover,
.nav-item:hover > .nav-link {
  color: var(--primary-dark);
}

.nav-cta .btn-nav {
  margin-left: 4px;
}

.btn {
  display: inline-block;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 24px rgba(15, 118, 110, 0.16);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border: 1px solid var(--border);
}

.btn-outlines {
  background: transparent;
  border: 1px solid var(--border);
}

.hero .btn-outline {
  color: var(--text);
  border-color: var(--border);
  background: var(--surface);
}

.hero .btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-nav {
  background: var(--primary);
  color: #fff !important;
  padding: 10px 18px !important;
  border-radius: 999px;
}

.btn-nav:hover {
  background: var(--primary-dark);
  color: #fff !important;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.dropdown a {
  display: block;
  padding: 8px 16px;
  font-size: 0.875rem;
  color: var(--muted);
}

.dropdown a:hover {
  background: var(--bg);
  color: var(--primary);
}

@media (min-width: 901px) {
  .nav-item.has-dropdown:hover .dropdown {
    display: block;
  }
}

.menu-btn {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface-strong);
  color: var(--primary-dark);
  border-radius: 12px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
}

/* Hero */
.hero {
  position: relative;
  background: #f7faf9;
  color: #f5f0e7;
  padding: 52px 0 64px;
  overflow: hidden;
  min-height: 520px;
}

.hero-slides,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slides {
  z-index: 2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.04);
  transition: opacity 0.8s ease, transform 5s ease;
}

.hero-slide-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide-link {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-slide-link:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.95);
  outline-offset: -6px;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.28) 100%),
    radial-gradient(circle at right center, rgba(255, 255, 255, 0.24), transparent 34%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(0, 1fr);
  gap: 32px;
  align-items: end;
  align-content: end;
  min-height: 440px;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  max-width: 620px;
  margin-top: auto;
  padding: 32px 34px;
  border-radius: 28px;
  overflow: hidden;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.68) 0%, rgba(15, 23, 42, 0.52) 52%, rgba(15, 23, 42, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(15, 118, 110, 0.06) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 20px 48px rgba(29, 33, 31, 0.22);
  z-index: -1;
}

.hero-copy,
.hero-controls {
  text-shadow: 0 3px 14px rgba(2, 6, 23, 0.52);
}

.hero-kicker {
  margin: 0 0 8px;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #f2d9b1;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  line-height: 1.08;
  color: #ffffff;
}

.hero-lead {
  color: #f3eee6;
  font-size: 1.05rem;
  margin: 0 0 16px;
}

.hero-bullets {
  margin: 0 0 24px;
  padding-left: 1.2em;
  color: #e2e8f0;
  font-size: 0.95rem;
}

.hero-bullets li {
  margin-bottom: 6px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  align-self: end;
  margin-left: auto;
  margin-bottom: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 16px 32px rgba(23, 51, 47, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: auto;
}

.hero-arrow,
.hero-dot {
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.32);
  color: #fff;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.14);
}

.hero-arrow:hover,
.hero-dot:hover,
.hero-arrow:focus-visible,
.hero-dot:focus-visible {
  background: rgba(255, 255, 255, 0.46);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
}

.hero-dot.is-active {
  width: 30px;
  background: #fff;
  border-color: #fff;
}

.hero-minimal {
  min-height: 0;
  height: auto;
  padding: 0;
}

.hero-minimal .hero-slides {
  position: relative;
  inset: auto;
}

.hero-minimal .hero-slide {
  position: absolute;
  inset: 0;
  transform: none;
}

.hero-minimal .hero-slide.is-active {
  position: relative;
}

.hero-minimal .hero-slide-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.hero-minimal .hero-overlay {
  display: none;
}

.hero-minimal .hero-inner {
  position: absolute;
  inset: 0;
  grid-template-columns: 1fr;
  min-height: 0;
  height: auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
}

.hero-minimal .hero-controls {
  justify-self: center;
  margin-left: 0;
}

.hero-visual .hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 20px;
  color: #e2e8f0;
}

.hero-visual .hero-card h3 {
  margin-top: 0;
  color: #fff;
  font-size: 1.1rem;
}

.hero-visual .hero-card ul {
  margin: 0;
  padding-left: 1.1em;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.hero-visual .hero-card li {
  margin-bottom: 8px;
}

/* Sections */
.section {
  padding: 56px 0;
}

.section-tight {
  padding-top: 32px;
}

.section-title {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  text-align: center;
  color: var(--primary-dark);
  line-height: 1.15;
}

.section-sub {
  margin: 0 auto 28px;
  max-width: 760px;
  text-align: center;
  color: var(--muted);
  font-size: 1.02rem;
}

.alt-bg {
  background: linear-gradient(180deg, #ffffff 0%, #f7faf9 100%);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.stat {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(229, 231, 235, 0.88);
  border-radius: 22px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-suffix {
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  display: block;
  margin-top: 4px;
  font-size: 0.85rem;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.product-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(229, 231, 235, 0.88);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.product-card.is-active {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(12, 85, 122, 0.12);
}

.product-card h3 {
  margin: 12px 0 8px;
  font-size: 1.1rem;
}

.product-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.product-thumb {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
}

.product-thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 800 / 480;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.product-card:hover .product-thumb img {
  transform: scale(1.03);
}

.product-card h3 a {
  color: var(--text);
}

.product-card h3 a:hover {
  color: var(--primary);
}

.text-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.text-link:hover {
  text-decoration: underline;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.why-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(229, 231, 235, 0.88);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.why-card h3 {
  margin-top: 0;
  font-size: 1rem;
}

.why-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.steps {
  max-width: 720px;
  margin: 0 auto;
  padding-left: 1.2em;
}

.steps li {
  margin-bottom: 12px;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.region-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(229, 231, 235, 0.88);
  border-radius: 18px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.region-tile:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.serve-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.serve-tags span {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(229, 231, 235, 0.88);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

.certs .section-sub {
  margin-bottom: 20px;
}

.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.badge {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(229, 231, 235, 0.88);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-sm);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.testimonial {
  margin: 0;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(229, 231, 235, 0.88);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.testimonial p {
  margin: 0 0 12px;
  font-style: italic;
  color: var(--text);
}

.testimonial footer {
  font-size: 0.85rem;
  color: var(--muted);
}

.blog-preview {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.blog-teaser {
  text-align: left;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.blog-teaser h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.blog-teaser a {
  color: var(--primary);
}

.blog-teaser a:hover {
  text-decoration: underline;
}

.meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* FAQ */
.faq-item {
  border: 1px solid rgba(229, 231, 235, 0.88);
  border-radius: 20px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.96);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 14px 18px;
  font-size: 1rem;
  font-weight: 600;
  background: var(--surface);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.faq-q::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

.faq-item.is-open .faq-q::after {
  content: "鈭?;
}

.faq-a {
  padding: 0 18px 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.faq-a p {
  margin: 0;
}

/* CTA */
.cta-band {
  background: linear-gradient(135deg, #f7faf9, #ffffff);
  color: var(--text);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.cta-title {
  margin: 0 0 8px;
  color: var(--primary-dark);
  font-size: 1.5rem;
}

.cta-band p {
  margin: 0;
  color: var(--muted);
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.quote-form input,
.quote-form textarea {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  font: inherit;
  background: #fff;
  color: var(--text);
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: rgba(15, 118, 110, 0.48);
  outline: 3px solid rgba(15, 118, 110, 0.12);
}

.quote-form textarea {
  resize: vertical;
  min-height: 80px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Footer */
.site-footer {
  padding: 40px 0 0;
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(229, 231, 235, 0.88);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 32px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--text);
}

.footer-about {
  margin: 0 0 12px;
  max-width: 280px;
}

.footer-contact {
  margin: 0;
  line-height: 1.7;
}

.site-footer h4 {
  margin: 0 0 12px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(229, 231, 235, 0.88);
  padding: 16px 0;
  font-size: 0.8125rem;
}

.footer-bottom p {
  margin: 0;
}

/* Back to top */
.back-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(229, 231, 235, 0.88);
  background: var(--surface-strong);
  color: var(--primary-dark);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.back-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.back-top:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Blog page */
.blog-page-title {
  margin-top: 0;
}

.blog-list {
  display: grid;
  gap: 16px;
}

.blog-item {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(229, 231, 235, 0.88);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.blog-item h2 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.blog-item a {
  color: var(--primary);
}

.blog-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.inline-code {
  font-family: ui-monospace, monospace;
  font-size: 0.9em;
  background: #e8eaef;
  padding: 2px 6px;
  border-radius: 4px;
}

/* Factory showcase (home) */
.factory-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.factory-showcase-item {
  margin: 0;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(229, 231, 235, 0.88);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.factory-showcase-link {
  display: block;
  line-height: 0;
}

.factory-showcase-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 600 / 380;
  object-fit: cover;
  display: block;
}

.factory-showcase-item figcaption {
  padding: 12px 14px;
  font-size: 0.875rem;
  color: var(--muted);
}

.factory-showcase-item figcaption a {
  color: var(--primary);
  font-weight: 600;
}

/* Inner pages: factory, Dental Packaging */
.page-hero {
  background:
    linear-gradient(135deg, #ffffff 0%, #f8fcfb 56%, #eef8f6 100%);
  color: var(--text);
  padding: 52px 0 56px;
  border-bottom: 1px solid var(--border);
}

.page-hero .hero-kicker {
  color: var(--primary);
  text-shadow: none;
}

.page-hero .breadcrumb {
  margin: 0 0 12px;
  font-size: 0.875rem;
}

.page-hero .breadcrumb a {
  color: var(--muted);
}

.page-hero .breadcrumb a:hover {
  color: var(--primary);
}

.page-hero-title {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: var(--primary-dark);
  max-width: 880px;
}

.page-hero-lead {
  margin: 0 0 16px;
  max-width: 640px;
  color: var(--muted);
}

.page-hero .btn-primary {
  margin-top: 4px;
}

.narrow-content {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.factory-gallery {
  display: grid;
  gap: 20px;
  justify-items: center;
}

.factory-gallery--2 {
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
}

.factory-fig {
  margin: 0;
  max-width: 100%;
}

.factory-fig img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.factory-fig figcaption {
  margin-top: 8px;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-row .cta-title {
  margin-bottom: 4px;
}

/* Product & blog article pages */
.article-page {
  padding-bottom: 48px;
}

.article-header {
  padding: 36px 0 18px;
  background: transparent;
}

.article-header--blog {
  padding-top: 24px;
}

.breadcrumb {
  margin: 0 0 8px;
  font-size: 0.875rem;
}

.breadcrumb a {
  color: var(--primary);
  font-weight: 600;
}

/* .article-title {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  line-height: 1.25;
} */

.article-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.post-meta {
  margin: 0 0 8px;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.article-hero-fig {
  margin: 0;
  line-height: 0;
  background: #e8eaef;
}

.article-hero-fig img {
  width: 100%;
  max-height: min(520px, 50vh);
  object-fit: cover;
  display: block;
}

.article-body {
  padding: 28px 0 0;
}

.article-body h2 {
  margin: 24px 0 10px;
  font-size: 1.2rem;
}

.article-body p,
.article-body ul {
  margin: 0 0 14px;
  color: var(--muted);
}

.article-body ul {
  padding-left: 1.2em;
}


/* .blog-rich {
  color: var(--text);
}

.blog-rich p {
  margin: 0 0 14px;
  color: var(--muted);
}

.blog-rich h2,
.blog-rich h3 {
  margin: 22px 0 10px;
  color: var(--text);
  font-size: 1.15rem;
}

.blog-rich img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 12px 0;
}

.blog-rich ul,
.blog-rich ol {
  margin: 0 0 14px;
  padding-left: 1.25em;
  color: var(--muted);
} */

/* Blog list with cards & images */
.blog-list--grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(229, 231, 235, 0.88);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.blog-card-image {
  display: block;
  line-height: 0;
  background: #e8eaef;
}

.blog-card-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 640 / 400;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  margin: 0 0 6px;
  font-size: 0.8125rem;
  color: var(--muted);
}

.blog-card-title {
  margin: 0 0 8px;
  font-size: 1.1rem;
  line-height: 1.35;
}

.blog-card-title a {
  color: var(--text);
}

.blog-card-title a:hover {
  color: var(--primary);
}

.blog-card-excerpt {
  margin: 0 0 12px;
  font-size: 0.95rem;
  color: var(--muted);
  flex: 1;
}

.blog-main .subtitle {
  margin-bottom: 28px;
}

/* Blog toolbar (search + paging) */
.blog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.blog-search {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-search input[type="text"] {
  min-width: min(460px, 78vw);
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(229, 231, 235, 0.88);
  font: inherit;
  background: rgba(255, 255, 255, 0.96);
}

.blog-clear {
  color: var(--text) !important;
  border-color: var(--border) !important;
  background: var(--surface) !important;
}

.blog-clear:hover {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
}

.blog-result-meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.blog-pager {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.blog-load-more {
  color: var(--text) !important;
  border-color: var(--border) !important;
  background: var(--surface) !important;
}

.blog-load-more:hover {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
}

/* Home product cards with left/right image viewer */
.home-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.home-product-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(229, 231, 235, 0.88);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.home-product-media {
  position: relative;
  background: #e5e7eb;
}

.home-product-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.hp-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.75);
  background: rgba(15,23,42,0.55);
  color: #fff;
  cursor: pointer;
}

.hp-prev { left: 10px; }
.hp-next { right: 10px; }

.hp-count {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 12px;
  padding: 3px 8px;
  background: rgba(15,23,42,0.65);
  color: #fff;
  border-radius: 999px;
}

.home-product-body { padding: 14px 16px 18px; }
.home-product-body h3 { margin: 0 0 8px; }
.home-product-body p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 420px;
    align-items: end;
  }

  .hero {
    min-height: 520px;
  }

  .hero-minimal {
    min-height: 0;
  }

  .hero-controls {
    justify-content: center;
    margin-left: 0;
    margin-bottom: 0;
  }

  .hero-minimal .hero-inner {
    min-height: 0;
    justify-items: center;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .region-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-row {
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .factory-showcase-grid {
    grid-template-columns: 1fr;
  }

  .factory-gallery--2 {
    grid-template-columns: 1fr;
  }

  .blog-list--grid {
    grid-template-columns: 1fr;
  }

  .home-product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 500px;
    padding: 34px 0 42px;
  }

  .hero-minimal {
    min-height: 0;
    padding: 0;
  }

  .hero-inner {
    min-height: 0;
    gap: 20px;
    align-content: end;
  }

  .hero-copy {
    max-width: 100%;
    margin-top: 0;
    padding: 22px 18px;
    border-radius: 18px;
  }

  .hero-copy::before {
    background:
      linear-gradient(180deg, rgba(15, 23, 42, 0.58) 0%, rgba(15, 23, 42, 0.44) 100%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .hero-overlay {
    background: transparent;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .section {
    padding: 42px 0;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .page-hero {
    padding: 36px 0 40px;
  }

  .page-hero-title {
    font-size: 1.72rem;
  }

  .page-hero-lead {
    font-size: 0.98rem;
  }

  .quote-form {
    padding: 16px;
    border-radius: 18px;
  }

  .cta-row .btn,
  .cta-inner .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-bullets {
    margin-bottom: 20px;
    font-size: 0.92rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .hero-controls {
    justify-content: center;
    gap: 12px;
    width: fit-content;
    max-width: 320px;
    padding: 12px 14px;
    margin-left: 0;
    margin-right: 0;
    align-self: end;
    margin-top: 18px;
    margin-bottom: 4px;
    flex-wrap: nowrap;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.22);
  }

  .hero-arrow {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-color: rgba(15, 118, 110, 0.18);
    background: #ffffff;
    color: var(--primary-dark);
    font-size: 1.45rem;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
  }

  .hero-dots {
    min-width: 0;
    flex: 1 1 auto;
    max-width: none;
    justify-content: center;
    flex-wrap: nowrap;
    overflow: visible;
    padding: 0;
    gap: 8px;
  }

  .hero-counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.1);
    color: var(--primary-dark);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    box-shadow: inset 0 0 0 1px rgba(15, 118, 110, 0.12);
  }

  .hero-arrow:hover,
  .hero-arrow:focus-visible {
    background: #ffffff;
    color: var(--primary-dark);
  }

  .hero-minimal .hero-inner {
    min-height: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 16px;
  }

  .hero-minimal .hero-controls {
    position: relative;
    bottom: auto;
    margin-top: 22px;
    margin-bottom: 0;
  }

  /* .top-social {
    display: none;
  } */

   .top-bar-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }


 
  .top-contact {
    width: auto;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 6px 12px;
  }

  .top-contact a,
  .top-contact .sep {
    font-size: 0.85rem;
  }

   /* .top-social {
    display: none;
  } */

  .menu-btn {
    display: inline-block;
  }

  .mobile-contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-left: auto;
    margin-right: 10px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
  }

  .mobile-contact-link:hover {
    background: var(--primary-dark);
    color: #fff !important;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(229, 231, 235, 0.88);
    box-shadow: var(--shadow-sm);
    border-radius: 0 0 24px 24px;
  }

  .site-header {
    top: 0;
    margin-top: 0;
    border-radius: 0;
  }

  .main-nav.is-open {
    display: block;
  }

  .nav-wrap {
    flex-wrap: wrap;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 4% 20px;
    gap: 0;
  }

  .nav-item {
    border-bottom: 1px solid var(--border);
  }

  .nav-item:last-child {
    border-bottom: none;
  }

  .nav-link {
    padding: 14px 0;
  }

  .dropdown {
    position: static;
    display: none;
    border: none;
    box-shadow: none;
    padding: 0 0 12px 12px;
  }

  .nav-item.has-dropdown.is-open .dropdown {
    display: block;
  }

  .nav-item.has-dropdown > .nav-link {
    cursor: pointer;
  }

  .nav-cta {
    display: none;
  }

  .nav-cta .btn-nav {
    display: inline-block;
    margin-left: 0;
    text-align: center;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

   .logo {
    height: 52px;
  }

  .site-header .logo {
    flex-basis: min(150px, 34vw);
    width: min(150px, 34vw);
    max-width: 150px;
    height: 52px;
  }

  .logo img {
    height: 48px;
    max-width: min(190px, 42vw);
  }

  .site-header .logo img {
    width: 100% !important;
    height: 100% !important;
    max-width: none;
  }
}

