/* Home page — B2B sourcing redesign. */
h3 { font-weight: 700; }

#hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  background: #fbf0e4;
  overflow: hidden;
  isolation: isolate;
}

#hero .hero-bg-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.96) 34%, rgba(255,255,255,.46) 43%, rgba(255,255,255,.12) 52%, rgba(255,255,255,0) 62%);
}

#hero .hero-pattern {
  display: none;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

#hero .hero-glow {
  display: none;
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,154,60,.06) 0%, transparent 70%);
  pointer-events: none;
}

#hero .hero-glow-2 {
  display: none;
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,154,60,.04) 0%, transparent 70%);
  pointer-events: none;
}

#hero .hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  display: block;
  align-items: center;
  min-height: inherit;
  padding: 6.8rem 32px 5.1rem clamp(165px, 9.8vw, 205px);
  pointer-events: none;
}

#hero .hero-visual {
  display: block;
  align-self: stretch;
  min-height: 420px;
}

/* ── Hero Carousel ── */
.hero-carousel {
  position: relative;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.06);
  background: #0a1a12;
}

.hero-carousel-track {
  display: flex;
  height: 100%;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.hero-carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
  height: 100%;
}

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

/* Arrows */
.hero-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.85);
  cursor: pointer;
  z-index: 2;
  transition: all .25s ease;
  -webkit-tap-highlight-color: transparent;
}

.hero-carousel-arrow svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.hero-carousel-arrow--prev { left: 14px; }
.hero-carousel-arrow--next { right: 14px; }

@media (hover:hover) {
  .hero-carousel-arrow:hover {
    background: rgba(0,0,0,.7);
    border-color: rgba(196,154,60,.45);
    color: var(--gold-l);
    transform: translateY(-50%) scale(1.08);
  }
}

.hero-carousel-arrow:active {
  transform: translateY(-50%) scale(.94);
}

/* Dots */
.hero-carousel-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.hero-carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  cursor: pointer;
  transition: all .3s ease;
  -webkit-tap-highlight-color: transparent;
}

.hero-carousel-dot.is-active {
  width: 28px;
  border-radius: 999px;
  border-color: var(--gold);
  background: var(--gold);
}

@media (hover:hover) {
  .hero-carousel-dot:hover {
    border-color: rgba(255,255,255,.6);
    background: rgba(255,255,255,.25);
  }
  .hero-carousel-dot.is-active:hover {
    border-color: var(--gold);
    background: var(--gold);
  }
}

#hero .hero-carousel--background {
  position: absolute;
  inset: 0;
  z-index: auto;
  height: 100%;
  min-height: 0;
  border-radius: 0;
  box-shadow: none;
  background: #fbf0e4;
  pointer-events: none;
}

#hero .hero-carousel--background .hero-carousel-track {
  position: absolute;
  inset: 0;
  display: block;
  height: 100%;
  transition: none;
  transform: none !important;
  will-change: auto;
}

#hero .hero-carousel--background .hero-carousel-slide {
  position: absolute;
  inset: 0;
  min-width: 100%;
  height: 100%;
  opacity: 0;
  transform: none;
  transition: opacity .8s ease;
  pointer-events: none;
}

#hero .hero-carousel--background .hero-carousel-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: none;
}

#hero .hero-carousel--background .hero-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

#hero .hero-carousel--background .hero-carousel-arrow {
  display: none;
}

#hero .hero-carousel--background .hero-carousel-arrow--prev {
  right: 84px;
  left: auto;
}

#hero .hero-carousel--background .hero-carousel-arrow--next {
  right: 32px;
}

#hero .hero-carousel--background .hero-carousel-arrow:active {
  transform: scale(.96);
}

@media (hover:hover) {
  #hero .hero-carousel--background .hero-carousel-arrow:hover {
    background: rgba(255,255,255,.92);
    border-color: rgba(196,154,60,.38);
    color: #11171d;
    transform: translateY(-2px);
  }
}

#hero .hero-carousel--background .hero-carousel-dots {
  bottom: 48px;
  z-index: 4;
  pointer-events: auto;
}

#hero .hero-carousel--background .hero-carousel-dot {
  border-color: rgba(17,23,29,.22);
  background: rgba(17,23,29,.16);
}

#hero .hero-carousel--background .hero-carousel-dot.is-active {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border-color: #1677f8;
  background: #1677f8;
}

#hero .hero-content {
  max-width: 520px;
  pointer-events: auto;
}

#hero .hero-label {
  margin-bottom: .95rem;
}

#hero .hero-h1 {
  max-width: 660px;
  margin: 0 0 1.35rem;
  color: #0B2A1F;
  font-size: 48px !important;
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: 0;
}

#hero .hero-h1-main {
  display: block;
  white-space: nowrap;
}

#hero .hero-mobile-break {
  display: none;
}

#hero .hero-h1 em {
  display: block;
  font-style: normal;
  color: #C49A3C;
}

#hero .hero-subtitle {
  max-width: 470px;
  margin-bottom: 1.25rem;
  color: #0B2A1F;
  font-size: 1.06rem;
  line-height: 1.58;
}

#hero .hero-trust {
  flex-direction: column;
  align-items: flex-start;
  gap: .68rem;
  margin-bottom: 1.9rem;
  padding-bottom: 0;
  border-bottom: 0;
}

#hero .hero-trust-item {
  gap: .78rem;
  color: #0B2A1F;
  font-size: 1rem;
  line-height: 1.35;
}

#hero .hero-trust-dot {
  position: relative;
  width: 18px;
  height: 18px;
  background: transparent;
  border-radius: 0;
}

#hero .hero-trust-dot::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 8px;
  height: 14px;
  border: solid #ff6a2b;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

#hero .hero-tags {
  margin-bottom: 1.55rem;
}

#trust {
  min-height: 108px;
  display: flex;
  align-items: center;
  margin-top: 0;
  padding: 0;
  background: #fff;
  border-top: 1px solid rgba(11, 42, 31, .08);
  border-bottom: 1px solid rgba(11, 42, 31, .08);
}

.home-sourcing {
  padding: var(--section-pad) 0;
  background: var(--color-cream-50);
}

.home-sourcing__intro {
  max-width: 920px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.home-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.home-capability-card {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  border: 1px solid var(--color-border-medium);
  border-radius: var(--r-md);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(15, 35, 24, .06);
}

.home-capability-card > span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(196, 154, 60, .28);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 800;
}

.home-capability-card h3 {
  color: var(--g-900);
  font-size: 1.18rem !important;
  line-height: 1.25;
}

.home-capability-card p {
  margin: .75rem 0 1.1rem;
  color: var(--text-mid);
  font-size: .9rem !important;
  line-height: 1.65;
}

.home-capability-card div,
.home-proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.home-capability-card b,
.home-proof-tags span {
  padding: .32rem .62rem;
  border: 1px solid rgba(15, 35, 24, .1);
  border-radius: 999px;
  background: var(--g-50);
  color: var(--g-600);
  font-size: .68rem;
  font-weight: 700;
}

.home-service-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1.25rem;
  padding: 1.4rem 1.6rem;
  border: 1px solid rgba(196, 154, 60, .22);
  border-radius: var(--r-md);
  background: linear-gradient(90deg, rgba(196, 154, 60, .08), rgba(255, 255, 255, .9));
}

.home-service-band strong {
  color: var(--g-900);
  font-size: 1.05rem;
}

.home-service-band p {
  max-width: 760px;
  margin-top: .25rem;
  color: var(--text-mid);
  font-size: .9rem !important;
  line-height: 1.6;
}

#products .product-card-img-overlay {
  opacity: 1;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1rem;
  background: linear-gradient(180deg, transparent 30%, rgba(15, 35, 24, .72));
}

#products .product-card-img-overlay .btn {
  transform: none;
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

.home-market {
  position: relative;
}

.home-market__layout {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.45fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.home-market__intro {
  position: sticky;
  top: calc(var(--site-header-height, 65px) + 24px);
  padding: 2rem;
  border: 1px solid rgba(15, 35, 24, .1);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, var(--white), rgba(244, 239, 228, .82));
}

.home-market__intro h2 {
  margin-bottom: 1rem;
  color: var(--g-900);
  line-height: 1.08;
}

.home-market__intro p {
  color: var(--text-mid);
  font-size: .96rem !important;
  line-height: 1.72;
}

.home-market__stats {
  display: grid;
  gap: .75rem;
  margin-top: 1.4rem;
}

.home-market__stats span {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .8rem .9rem;
  border: 1px solid rgba(15, 35, 24, .08);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .7);
  color: var(--text-mid);
  font-size: .82rem;
}

.home-market__stats strong {
  min-width: 34px;
  color: var(--gold);
  font-size: 1.15rem;
}

.home-market__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.home-market-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  min-height: 180px;
  overflow: hidden;
  border: 1px solid var(--cream-dd);
  border-radius: var(--r-md);
  background: var(--white);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.home-market-card--feature {
  grid-column: 1 / -1;
  grid-template-columns: minmax(220px, .82fr) minmax(0, 1fr);
  min-height: 300px;
}

#hero .hero-ctas .btn {
  height: 46px;
}

@media (hover:hover) {
  .home-market-card:hover {
    transform: translateY(-3px);
    border-color: rgba(196, 154, 60, .38);
    box-shadow: var(--shadow-md);
  }
}

.home-market-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-market-card__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.1rem;
}

.home-market-card__body span {
  display: inline-block;
  margin-bottom: .55rem;
  color: var(--gold);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-market-card__body h3 {
  color: var(--g-900);
  font-size: 1rem !important;
  line-height: 1.4;
}

.home-market-card--feature .home-market-card__body h3 {
  max-width: 540px;
  font-size: 1.45rem !important;
  line-height: 1.2;
}

.home-market-card__body p {
  margin: .85rem 0 1rem;
  color: var(--text-mid);
  font-size: .9rem !important;
  line-height: 1.65;
}

.home-market-card__body div,
.home-cert-list {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .9rem;
}

.home-market-card__body b,
.home-cert-list span {
  padding: .3rem .58rem;
  border: 1px solid rgba(15, 35, 24, .1);
  border-radius: 999px;
  background: var(--g-50);
  color: var(--g-600);
  font-size: .66rem;
  font-weight: 800;
}

.home-market__decision {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.home-market__decision article {
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(15, 35, 24, .1);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .72);
}

.home-market__decision strong {
  display: block;
  margin-bottom: .35rem;
  color: var(--g-900);
  font-size: 1.04rem;
}

.home-market__decision span {
  color: var(--text-mid);
  font-size: .86rem;
  line-height: 1.55;
}

.home-equipment {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--color-cream-50), var(--cream-d));
}

.home-equipment__head {
  max-width: 920px;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.home-equipment__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .72fr);
  gap: 1.25rem;
  align-items: stretch;
}

.home-equipment__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.home-equipment__grid article {
  padding: 1.45rem;
  border: 1px solid var(--cream-dd);
  border-radius: var(--r-md);
  background: var(--white);
}

.home-equipment__grid span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(196, 154, 60, .1);
  color: var(--gold);
  font-weight: 800;
}

.home-equipment__grid h3,
.home-cert-panel h3 {
  color: var(--g-900);
  font-size: 1.08rem !important;
  line-height: 1.3;
}

.home-equipment__grid p,
.home-cert-panel p,
.home-cert-panel li {
  color: var(--text-mid);
  font-size: .88rem !important;
  line-height: 1.62;
}

.home-equipment__grid p {
  margin-top: .65rem;
}

.home-cert-panel {
  padding: 1.6rem;
  border: 1px solid rgba(196, 154, 60, .22);
  border-radius: var(--r-md);
  background: var(--g-900);
}

.home-cert-panel h3 {
  color: var(--white);
}

.home-cert-panel p,
.home-cert-panel li {
  color: rgba(255, 255, 255, .66);
}

.home-cert-list span {
  border-color: rgba(196, 154, 60, .28);
  background: rgba(196, 154, 60, .1);
  color: var(--gold-l);
}

.home-cert-panel ul {
  display: grid;
  gap: .7rem;
  margin-top: 1.25rem;
}

.home-cert-panel li {
  position: relative;
  padding-left: 1rem;
}

.home-cert-panel li::before {
  content: "";
  position: absolute;
  top: .62rem;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.home-industry-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.home-industry-card {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  min-height: 164px;
  overflow: hidden;
  border: 1px solid var(--cream-dd);
  border-radius: var(--r-md);
  background: var(--white);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

@media (hover:hover) {
  .home-industry-card:hover {
    transform: translateY(-3px);
    border-color: rgba(196, 154, 60, .38);
    box-shadow: var(--shadow-md);
  }
}

.home-industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-industry-card div {
  padding: 1.1rem;
}

.home-industry-card span,
.home-proof-label {
  display: inline-block;
  margin-bottom: .55rem;
  color: var(--gold);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-industry-card h3 {
  color: var(--g-900);
  font-size: .98rem !important;
  line-height: 1.45;
}

#industries .industry-panel.active {
  padding: 2rem;
  border: 1px solid var(--cream-dd);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .78);
}

#process .process-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#process .process-line {
  display: none;
}

#testimonials .testi-card h3 {
  margin-bottom: .75rem;
  color: var(--white);
  font-size: 1.2rem !important;
  line-height: 1.35;
}

#testimonials .testi-text {
  font-style: normal;
}

#process .process-step h3 {
  font-size: 1.05rem !important;
}

#trust .container {
  width: min(100%, 1440px);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

#trust .trust-inner {
  width: 100%;
  min-height: 108px;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: center;
  gap: 0;
}

#trust .trust-title {
  height: 108px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 32px;
  border-right: 1px solid rgba(11, 42, 31, .08);
  color: #17191c;
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.28;
}

#trust .trust-logo-row {
  min-width: 0;
  height: 108px;
  display: flex;
  align-items: center;
  overflow: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#trust .trust-logo-row::-webkit-scrollbar {
  display: none;
}

#trust .trust-logo-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: clamp(26px, 4vw, 58px);
  padding: 0 36px;
  animation: partnerLogoMarquee 46s linear infinite;
  will-change: transform;
}

#trust .trust-logo-row:hover .trust-logo-track {
  animation-play-state: paused;
}

#trust .trust-logo-track img {
  flex: 0 0 auto;
  width: auto;
  max-width: 132px;
  height: 42px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.05);
  opacity: .82;
}

@keyframes partnerLogoMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Hero glow animations */
.hero-glow {
  animation: heroGlow 6s ease-in-out infinite;
}

.hero-glow-2 {
  animation: heroGlow2 8s ease-in-out infinite;
}

@keyframes heroGlow {
  0%,
  100% {
    opacity: .7;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

@keyframes heroGlow2 {
  0%,
  100% {
    opacity: .6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Factory section */
.factory-video-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}

.factory-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  background: #000;
}

.factory-copy {
  color: var(--text-mid);
  font-size: .9rem;
  line-height: 1.75;
}

.factory-copy--spaced {
  margin-top: .75rem;
}

.factory-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .6rem;
  margin-top: 1.25rem;
}

.factory-metric {
  padding: .85rem;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--cream-dd);
  border-radius: var(--r-md);
}

.factory-metric__number {
  color: #0B2A1F;
  font-size: 1.3rem;
  font-weight: 800;
}

.factory-metric__suffix {
  color: var(--gold);
  font-size: .75rem;
}

.factory-metric__label {
  color: #4F625C;
  font-size: .68rem;
}

#about-factory.about-section {
  padding: var(--section-pad) 0;
  background: var(--color-cream-50);
}

#about-factory .about-container {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 32px;
}

#about-factory .about-factory__header {
  max-width: 920px;
  margin: 0 auto clamp(2rem, 4vw, 3.2rem);
  text-align: center;
}

#about-factory .about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
}

#about-factory .about-kicker::before,
#about-factory .about-kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

#about-factory .about-factory__headline {
  margin: clamp(12px, 1.8vw, 18px) 0 0;
  color: #0B2A1F;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

#about-factory .about-factory__subhead {
  max-width: 720px;
  margin: clamp(10px, 1.4vw, 16px) auto 0;
  color: #4F625C;
  font-size: clamp(.95rem, 1.2vw, 1.08rem);
  line-height: 1.58;
}

#about-factory .about-factory__copy {
  min-width: 0;
}

#about-factory .about-factory__body {
  max-width: 680px;
  margin: .65rem 0 0;
  color: #4F625C;
  font-size: .92rem;
  line-height: 1.72;
}

#about-factory .about-factory__capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 1rem;
}

#about-factory .about-factory__capability-tags span {
  padding: 5px 12px;
  border: 1px solid rgba(196, 154, 60, .3);
  border-radius: 16px;
  background: rgba(196, 154, 60, .06);
  color: #0B2A1F;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: normal;
}

#about-factory .about-factory__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 1.25rem;
}

.about-factory__btn-video {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(196, 154, 60, .35);
  border-radius: 7px;
  background: transparent;
  color: #0B2A1F;
  font-size: .85rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.about-factory__btn-video svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

@media (hover:hover) {
  .about-factory__btn-video:hover {
    transform: translateY(-2px);
    border-color: rgba(196, 154, 60, .55);
    background: rgba(196, 154, 60, .08);
  }
}

#hero .hero-factory-video-btn {
  min-height: 48px;
  background: rgba(255, 255, 255, .68);
  backdrop-filter: blur(8px);
}

#about-factory .about-factory__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

#about-factory .about-factory__video-card {
  position: relative;
  border: 1px solid rgba(196, 154, 60, .22);
  border-radius: 20px;
  background: #000;
  box-shadow: 0 4px 32px rgba(15, 35, 24, .06);
}

#about-factory .about-factory__video-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 5px 12px;
  border-radius: 6px;
  background: rgba(0, 0, 0, .55);
  color: rgba(255, 255, 255, .9);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .04em;
}

#about-factory .about-factory__video-el {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  pointer-events: auto;
}

#about-factory .about-factory__video-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

#about-factory .about-factory__video-tags span {
  padding: 4px 10px;
  border: 1px solid rgba(196, 154, 60, .28);
  border-radius: 14px;
  background: rgba(196, 154, 60, .06);
  color: #4F625C;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .03em;
}

.about-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.about-video-modal.is-open {
  display: flex;
}

.about-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .92);
}

.about-video-modal__content {
  position: relative;
  width: min(92vw, 1200px);
  z-index: 1;
}

.about-video-modal__content video {
  display: block;
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  background: #000;
}

.about-video-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(255, 255, 255, .12);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: background .2s ease;
}

.about-video-modal__close:hover {
  background: rgba(255, 255, 255, .25);
}

.about-video-modal__close svg {
  width: 20px;
  height: 20px;
}

#about-factory .about-factory__video-card.vvb-video-enhanced .about-factory__video-el {
  border-radius: 20px 20px 0 0;
}

#about-factory .about-factory__video-card.vvb-video-enhanced .vvb-video-controls {
  border-radius: 0 0 20px 20px;
}

.about-video-modal__content.vvb-video-enhanced video {
  border-radius: 12px 12px 0 0;
}

.about-video-modal__content.vvb-video-enhanced .vvb-video-controls {
  border-radius: 0 0 12px 12px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  #hero {
    min-height: 620px;
  }

  #hero .hero-bg-scrim {
    background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 42%, rgba(255,255,255,.34) 58%, rgba(255,255,255,.04) 74%, rgba(255,255,255,0) 100%);
  }

  #hero .hero-inner {
    display: block;
    min-height: inherit;
    padding: 5.5rem 32px 4.2rem;
  }

  #hero .hero-content {
    max-width: 560px;
  }

  #hero .hero-visual {
    order: 2;
    min-height: 320px;
  }

  .hero-carousel {
    min-height: 320px;
  }

  #hero .hero-h1 {
    font-size: 3.35rem !important;
  }

  #hero .hero-subtitle {
    max-width: 500px;
  }

  #trust {
    min-height: auto;
    padding: 0;
  }

  #trust .trust-inner {
    grid-template-columns: 200px minmax(0, 1fr);
  }

  #trust .trust-title {
    padding: 0 28px;
    font-size: 1.16rem;
  }

  #trust .trust-logo-row {
    height: 108px;
  }

  #trust .trust-logo-track {
    gap: 34px;
    padding: 0 28px;
  }

  #trust .trust-logo-track img {
    max-width: 118px;
    height: 38px;
  }

  .home-capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-industry-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-market__layout,
  .home-equipment__layout,
  #about-factory .about-factory__grid {
    grid-template-columns: 1fr;
  }

  .home-market__intro {
    position: static;
  }

  .home-equipment__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #process .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  #hero .hero-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  #trust .container {
    padding-left: 0;
    padding-right: 0;
  }

  #trust .trust-inner {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  #trust .trust-title {
    width: 100%;
    height: 72px;
    padding: 0 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(11, 42, 31, .08);
    font-size: 1.05rem;
  }

  #trust .trust-logo-row {
    height: 76px;
  }

  #trust .trust-logo-track {
    padding: 0 20px;
    gap: 30px;
    animation-duration: 40s;
  }

  #trust .trust-logo-track img {
    max-width: 108px;
    height: 34px;
  }

  #hero {
    min-height: 700px;
  }

  #hero .hero-bg-scrim {
    background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.95) 44%, rgba(255,255,255,.62) 67%, rgba(255,255,255,.05) 100%);
  }

  #hero .hero-carousel--background .hero-carousel-slide img {
    object-position: 62% bottom;
  }

  .hero-carousel-arrow {
    width: 36px;
    height: 36px;
  }

  .hero-carousel-arrow svg { width: 16px; height: 16px; }
  #hero .hero-carousel--background .hero-carousel-arrow--prev { right: 68px; left: auto; }
  #hero .hero-carousel--background .hero-carousel-arrow--next { right: 20px; }
  #hero .hero-carousel--background .hero-carousel-arrow { bottom: 22px; }
  #hero .hero-carousel--background .hero-carousel-dots { bottom: 30px; gap: 8px; }

  #hero .hero-inner {
    padding-top: 4.3rem;
    padding-bottom: 18rem;
  }

  #hero .hero-h1-main {
    white-space: normal;
  }

  #hero .hero-mobile-break {
    display: block;
  }

  .home-service-band {
    align-items: stretch;
    flex-direction: column;
    gap: 1rem;
  }

  .home-service-band .btn {
    width: 100%;
    justify-content: center;
  }

  #hero .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: .75rem;
  }

  #hero .hero-ctas .btn {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    justify-content: center;
    padding: .95rem 1.5rem;
    font-size: 1rem;
  }

  #hero .hero-factory-video-btn {
    width: 100%;
    min-height: 58px;
  }

  .home-industry-card {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .home-market__grid,
  .home-market__decision,
  .home-equipment__grid {
    grid-template-columns: 1fr;
  }

  .home-market-card,
  .home-market-card--feature {
    grid-template-columns: 136px minmax(0, 1fr);
    min-height: 180px;
  }

  .home-market-card--feature .home-market-card__body h3 {
    font-size: 1.1rem !important;
  }

  .home-equipment__head {
    text-align: left;
  }
}

@media (max-width: 560px) {
  #hero .hero-inner {
    padding: 3.9rem 20px 16.5rem;
  }

  #hero {
    min-height: 690px;
  }

  #hero .hero-carousel--background .hero-carousel-slide img {
    object-position: 66% bottom;
  }

  .hero-carousel-arrow {
    width: 32px;
    height: 32px;
  }

  .hero-carousel-arrow svg { width: 14px; height: 14px; }
  #hero .hero-carousel--background .hero-carousel-dots { bottom: 20px; gap: 7px; }
  .hero-carousel-dot { width: 8px; height: 8px; }
  .hero-carousel-dot.is-active { width: 24px; }
  #hero .hero-carousel--background .hero-carousel-dot.is-active { width: 8px; height: 8px; border-radius: 50%; }

  #hero .hero-label {
    display: block;
    max-width: 100%;
    margin-bottom: .8rem;
    font-size: .62rem;
    line-height: 1.55;
    white-space: normal;
  }

  #hero .hero-h1 {
    max-width: 100%;
    margin-bottom: .9rem;
    font-size: 2.28rem !important;
    overflow-wrap: normal;
  }

  #hero .hero-subtitle {
    margin-bottom: 1rem;
    font-size: .94rem;
  }

  #hero .hero-trust {
    gap: .55rem;
    margin-bottom: 1.3rem;
    padding-bottom: 0;
  }

  #hero .hero-tags {
    margin-bottom: 1.15rem;
  }

  #hero .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: .75rem;
  }

  #hero .hero-ctas .btn {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    justify-content: center;
    white-space: normal;
    text-align: center;
    padding: .95rem 1.25rem;
    font-size: 1rem;
  }

  #hero .hero-factory-video-btn {
    width: 100%;
    min-height: 58px;
  }

  .factory-metrics {
    grid-template-columns: 1fr;
  }

  .home-capability-grid,
  .home-industry-cards,
  .home-market__grid,
  .home-market__decision,
  .home-equipment__grid,
  #process .process-steps {
    grid-template-columns: 1fr;
  }

  .home-capability-card {
    min-height: auto;
  }

  .home-industry-card {
    grid-template-columns: 1fr;
  }

  .home-industry-card img {
    aspect-ratio: 16 / 9;
  }

  .home-market__intro,
  .home-cert-panel {
    padding: 1.2rem;
  }

  .home-market-card,
  .home-market-card--feature {
    grid-template-columns: 1fr;
  }

  .home-market-card img {
    aspect-ratio: 16 / 9;
  }

  .home-market-card__body {
    min-height: 190px;
  }

  .home-equipment__grid article {
    padding: 1.2rem;
  }

  #industries .industry-panel.active {
    padding: 1rem;
  }

  h2, h3,
  .section-head h2,
  .about-factory__headline,
  .home-market__intro h2 {
    font-weight: 800;
  }
}

@media (max-width: 460px) {
  #hero .hero-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  #trust .trust-title {
    padding: 0 16px;
  }

  #trust .trust-logo-track {
    padding: 0 16px;
    gap: 26px;
  }
}

/* Homepage layout stability hotfix */
#products .products-grid,
.home-capability-grid,
.home-market__grid,
.home-market__decision,
.home-equipment__grid,
#process .process-steps,
.quality-stages,
.testi-grid,
.why-grid {
  align-items: stretch;
}

#products .product-card,
.home-capability-card,
.home-market-card,
.home-market__decision article,
.home-equipment__grid article,
.home-cert-panel,
.why-card,
#process .process-step,
.quality-stage,
.testi-card {
  min-width: 0;
}

#products .product-card {
  display: flex;
  height: 100%;
  flex-direction: column;
}

#products .product-card-body {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  flex-direction: column;
}

#products .product-card-body p {
  margin-bottom: 1rem;
}

#products .product-card-features {
  margin-top: auto;
}

.home-market-card img,
.home-industry-card img,
#products .product-card-img img {
  display: block;
  min-width: 0;
}

.home-market-card__body,
.home-capability-card,
.home-equipment__grid article,
.home-cert-panel,
.why-card,
#process .process-step,
.quality-stage,
.testi-card,
#about-factory .about-factory__copy {
  overflow-wrap: break-word;
}

#trust .trust-inner,
#trust .trust-logo-row {
  min-width: 0;
}

@media (max-width: 760px) {
  .home-market-card,
  .home-market-card--feature,
  .home-industry-card {
    grid-template-columns: 1fr;
  }

  .home-market-card img,
  .home-industry-card img {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .home-market-card__body {
    min-height: auto;
  }

  #about-factory .about-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 560px) {
  #about-factory .about-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  #about-factory .about-kicker {
    gap: 8px;
    font-size: .66rem;
    letter-spacing: .14em;
  }

  #about-factory .about-kicker::before,
  #about-factory .about-kicker::after {
    width: 22px;
  }

  #about-factory .about-factory__btn-video {
    width: 100%;
  }
}

/* ---- FAQ (custom-service cs-* style) ---- */
#faq.cs-section {
  --cs-dark: var(--color-green-950);
  --cs-ink: #0B2A1F;
  --cs-green: #0B2A1F;
  --cs-gold: #C49A3C;
  --cs-gold-soft: #C49A3C;
  --cs-cream: var(--color-cream-50);
  --cs-cream-deep: var(--color-cream-100);
  --cs-line: rgba(15, 35, 24, .12);
  --cs-muted: #4F625C;
  padding: clamp(4.5rem, 7vw, 7rem) 0;
  background: var(--cs-cream);
}

#faq .cs-faq-main h2 {
  margin: .8rem 0 1rem;
  color: var(--cs-ink);
  font-size: 38px !important;
  line-height: 1.08;
  letter-spacing: 0;
}

#faq .cs-faq-main > p {
  max-width: 780px;
  margin-bottom: 1.6rem;
  color: var(--cs-muted);
  font-size: 16px !important;
  line-height: 1.75;
}

#faq .cs-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

#faq .cs-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cs-gold);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
}

#faq .cs-label::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

#faq .cs-faq-main,
#faq .cs-consult-card,
#faq .cs-faq-item,
#faq .cs-faq-item button,
#faq .cs-faq-item span,
#faq .cs-faq-answer {
  min-width: 0;
}

#faq .cs-faq-list {
  display: grid;
  gap: .75rem;
}

#faq .cs-faq-item {
  overflow: hidden;
  border: 1px solid var(--cs-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 35, 24, .05);
}

#faq .cs-faq-item button {
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 0;
  background: transparent;
  color: var(--cs-ink);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
}

#faq .cs-faq-item button > span {
  flex: 1 1 auto;
  overflow-wrap: anywhere;
}

#faq .cs-faq-item b {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(15, 35, 24, .18);
  border-radius: 50%;
  background: rgba(196, 154, 60, .06);
}

#faq .cs-faq-item b::before,
#faq .cs-faq-item b::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: var(--cs-green);
  transform: translate(-50%, -50%);
}

#faq .cs-faq-item b::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity .2s ease;
}

#faq .cs-faq-item.is-open b::after,
#faq .cs-faq-item button[aria-expanded="true"] b::after {
  opacity: 0;
}

#faq .cs-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease, padding .25s ease;
}

#faq .cs-faq-item.is-open .cs-faq-answer,
#faq .cs-faq-item:has(button[aria-expanded="true"]) .cs-faq-answer {
  max-height: 420px;
}

#faq .cs-faq-answer p {
  margin: 0;
  padding: 0 1.2rem 1.15rem;
  color: var(--cs-muted);
  font-size: 15px !important;
  line-height: 1.65;
}

#faq .cs-consult-card {
  position: sticky;
  top: calc(var(--site-header-height, 66px) + 76px);
  padding: 1.5rem;
  border: 1px solid rgba(196, 154, 60, .2);
  border-radius: 18px;
  background: var(--cs-ink);
  box-shadow: 0 18px 46px rgba(15, 35, 24, .16);
}

#faq .cs-consult-card h3 {
  margin: 0 0 .7rem;
  color: #fff;
  font-size: 1.35rem !important;
  line-height: 1.22;
}

#faq .cs-consult-card p,
#faq .cs-consult-card li {
  color: rgba(255, 255, 255, .7);
  font-size: .92rem !important;
  line-height: 1.65;
}

#faq .cs-consult-card ul {
  display: grid;
  gap: .5rem;
  margin: 1.1rem 0 1.35rem;
  padding: 0;
  list-style: none;
}

#faq .cs-consult-card li {
  position: relative;
  padding-left: 1.25rem;
}

#faq .cs-consult-card li::before {
  content: "";
  position: absolute;
  top: .65rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cs-gold-soft);
}

#faq .cs-consult-card .btn {
  width: 100%;
  justify-content: center;
  white-space: normal;
  text-align: center;
}

@media (max-width: 1024px) {
  #faq .cs-faq-layout {
    grid-template-columns: 1fr;
  }

  #faq .cs-consult-card {
    position: static;
  }
}

@media (max-width: 560px) {
  #faq.cs-section {
    padding: 3.6rem 0;
  }

  #faq .cs-faq-item {
    border-radius: 14px;
  }

  #faq .cs-faq-item button {
    min-height: 58px;
    padding: .92rem 1rem;
    font-size: .94rem;
  }

  #faq .cs-faq-answer p {
    padding: 0 1rem 1rem;
    font-size: .9rem !important;
  }

  #faq .cs-consult-card {
    padding: 1.2rem;
  }
}
