/* =============================================
   HOME PAGE STYLES
   Feature sections: hero quick navigation, intro, manufacturing, approach, products, sustainability, testimonial, CTA and certifications carousel.
   Comments are intentionally grouped by page feature so future edits can be made safely without changing layout behavior.
   ============================================= */

/* Home Page Theme Tokens */
:root {
  --home-paper: #fbfaf7;
  --home-muted: #f3f1ec;
  --home-ink: var(--primary-color);
  --home-line: rgba(17, 17, 17, 0.1);
  --home-radius-xl: 30px;
  --home-radius-lg: 22px;
  --home-radius-md: 14px;
  --home-shadow: 0 34px 90px -42px rgba(0, 0, 0, 0.55);
  --home-shadow-strong: 0 45px 120px -48px rgba(0, 0, 0, 0.72);
}
/* Homepage Shell Background */
.home-page {
  background:
    radial-gradient(
      circle at 8% 8%,
      rgba(166, 138, 100, 0.12),
      transparent 28vw
    ),
    linear-gradient(180deg, var(--white) 0%, var(--home-paper) 100%);
  color: var(--home-ink);
}
.home-page .container {
  position: relative;
}
.home-page > .hero {
  isolation: isolate;
}
.home-page > .hero > .scroll-indicator {
  z-index: 2;
}
.home-hero-lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.04rem, 1.45vw, 1.28rem);
  line-height: 1.72;
  margin-bottom: 38px;
}
.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.home-hero-actions .btn-outline-white {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.03);
}
.home-hero-actions .btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}
/* Homepage Hero & Quick Navigation */
.home-quicknav-wrap {
  position: sticky;
  top: 76px;
  z-index: 80;
  background: rgba(251, 250, 247, 0.82);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.home-quicknav {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 14px 40px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}
.home-quicknav::-webkit-scrollbar {
  display: none;
}
.home-quicknav a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 17px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: rgba(17, 17, 17, 0.72);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  transition:
    transform 0.45s var(--ease-premium),
    background 0.45s var(--ease-premium),
    color 0.45s var(--ease-premium),
    border-color 0.45s var(--ease-premium);
}
.home-quicknav a::after {
  display: none !important;
}
.home-quicknav a:hover,
.home-quicknav a:focus-visible,
.home-quicknav a.active {
  transform: translateY(-2px);
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  outline: none;
}
/* Homepage Intro Section */
.home-intro {
  padding: 105px 0 70px;
  background: var(--home-paper);
  overflow: hidden;
}
.home-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.home-intro-copy .section-title {
  margin-bottom: 28px;
}
.home-intro-copy p {
  color: var(--text-light);
  font-size: 18px;
  line-height: 1.78;
  max-width: 690px;
}
.home-intro-copy .btn {
  margin-top: 28px;
}
.home-bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.home-bento-card {
  min-height: 170px;
  grid-column: span 3;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: var(--home-radius-lg);
  padding: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 28px 70px -58px rgba(0, 0, 0, 0.5);
  transition:
    transform 0.65s var(--ease-premium),
    box-shadow 0.65s var(--ease-premium),
    border-color 0.65s var(--ease-premium);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.home-bento-card:first-child,
.home-bento-card:nth-child(4) {
  grid-column: span 6;
}
.home-bento-card:hover {
  transform: translateY(-8px);
  border-color: rgba(166, 138, 100, 0.34);
  box-shadow: var(--home-shadow);
}
.home-bento-card i {
  color: var(--accent-color);
  font-size: 28px;
  display: inline-block;
  margin-bottom: 18px;
}
.home-bento-card h3 {
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}
.home-bento-card p {
  margin: 0;
  color: var(--text-light);
  font-size: 14.5px;
  line-height: 1.7;
}
/* Manufacturing Capability Section */
.home-manufacturing {
  position: relative;
  padding: 118px 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(
      circle at 76% 26%,
      rgba(166, 138, 100, 0.34),
      transparent 28vw
    ),
    linear-gradient(135deg, #0a0a0a 0%, #151515 58%, #0a0a0a 100%);
}
.home-manufacturing::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.5;
}
.home-manufacturing .container {
  position: relative;
  z-index: 1;
}
.home-manufacturing-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  margin-bottom: 60px;
}
.home-manufacturing .home-subtitle {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.home-manufacturing .home-section-title {
  font-size: clamp(2.55rem, 5.8vw, 5.7rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
  color: var(--white);
  margin: 0;
}
.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 72px;
}
.home-stat-card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  overflow: hidden;
  min-height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--home-radius-lg);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.055)
  );
  color: var(--white);
  padding: 26px;
  box-shadow: 0 24px 72px -56px rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(20px);
  transition:
    transform 0.62s var(--ease-premium),
    box-shadow 0.62s var(--ease-premium),
    border-color 0.62s var(--ease-premium);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.home-stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--mx) var(--my),
    rgba(166, 138, 100, 0.25),
    transparent 34%
  );
  transition: opacity 0.48s var(--ease-premium);
}
.home-stat-card:hover {
  transform: translateY(-9px);
  border-color: rgba(166, 138, 100, 0.36);
  box-shadow: var(--home-shadow);
}
.home-stat-card:hover::before {
  opacity: 1;
}
.home-stat-card .stat-number {
  position: relative;
  z-index: 2;
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--white);
}
.home-stat-card .stat-label {
  position: relative;
  z-index: 2;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.45;
  max-width: 140px;
  margin: 0 auto;
}
.home-why-choose {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--home-radius-xl);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.04)
  );
  backdrop-filter: blur(20px);
  padding: clamp(30px, 4vw, 56px);
}
.home-why-choose h3 {
  margin-bottom: 36px;
  color: var(--white);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  letter-spacing: 0.04em;
}
.home-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.home-why-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  transition:
    background 0.4s var(--ease-premium),
    border-color 0.4s var(--ease-premium);
}
.home-why-item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(166, 138, 100, 0.28);
}
.home-why-item i {
  color: var(--accent-color);
  font-size: 22px;
  flex-shrink: 0;
}
.home-why-item span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14.5px;
  font-weight: 500;
}
/* Integrated Approach Cards */
.home-approach {
  position: relative;
  padding: 118px 0;
  overflow: hidden;
  background: var(--white);
}
.home-approach::before {
  content: attr(data-section-label);
  position: absolute;
  top: 34px;
  right: clamp(20px, 5vw, 74px);
  font-weight: 800;
  font-size: clamp(4.5rem, 11vw, 10rem);
  line-height: 1;
  letter-spacing: -0.08em;
  color: rgba(17, 17, 17, 0.035);
  pointer-events: none;
}
.home-approach-header {
  max-width: 860px;
  text-align: center;
  margin: 0 auto 60px;
}
.home-approach-header .home-subtitle {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  justify-content: center;
}

.home-approach-header p {
  color: var(--text-light);
  font-size: 18px;
  line-height: 1.78;
  max-width: 750px;
  margin: 0 auto;
}
.home-approach-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}
.home-approach-card {
  --mx: 50%;
  --my: 50%;
  grid-column: span 3;
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: var(--home-radius-lg);
  background: rgba(255, 255, 255, 0.86);
  padding: 30px;
  box-shadow: 0 24px 72px -56px rgba(0, 0, 0, 0.62);
  transition:
    transform 0.62s var(--ease-premium),
    box-shadow 0.62s var(--ease-premium),
    border-color 0.62s var(--ease-premium);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.home-approach-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--mx) var(--my),
    rgba(166, 138, 100, 0.2),
    transparent 34%
  );
  transition: opacity 0.48s var(--ease-premium);
}
.home-approach-card:hover {
  transform: translateY(-9px);
  border-color: rgba(166, 138, 100, 0.36);
  box-shadow: var(--home-shadow);
}
.home-approach-card:hover::before {
  opacity: 1;
}
.home-approach-card > * {
  position: relative;
  z-index: 2;
}
.home-approach-card .approach-number {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(166, 138, 100, 0.1);
  color: var(--accent-color);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 20px;
}
.home-approach-card h3 {
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  margin: 0 0 14px;
  letter-spacing: 0.05em;
  color: var(--primary-color);
}
.home-approach-card p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.72;
  font-size: 15px;
}
.home-approach-cta {
  text-align: center;
  margin-top: 52px;
}
/* Featured Product Categories */
.home-products {
  position: relative;
  padding: 118px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #f8f7f3 0%, #f2f0ea 100%);
}
.home-products::before {
  content: attr(data-section-label);
  position: absolute;
  top: 34px;
  right: clamp(20px, 5vw, 74px);
  font-weight: 800;
  font-size: clamp(4.5rem, 11vw, 10rem);
  line-height: 1;
  letter-spacing: -0.08em;
  color: rgba(17, 17, 17, 0.045);
  pointer-events: none;
}
.home-products-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
  margin-bottom: 52px;
}
.home-products-header .home-subtitle {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.home-products-header .home-section-title {
  font-size: clamp(2.55rem, 5.8vw, 5.7rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
  color: var(--primary-color);
  margin: 0;
}
.home-product-showcase {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.home-product-card {
  --mx: 50%;
  --my: 50%;
  --rx: 0deg;
  --ry: 0deg;
  --lift: 0px;
  grid-column: span 3;
  min-height: 430px;
  position: relative;
  overflow: hidden;
  border-radius: var(--home-radius-lg);
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 52px -38px rgba(0, 0, 0, 0.7);
  cursor: pointer;
  transition:
    transform 0.65s var(--ease-premium),
    box-shadow 0.65s var(--ease-premium),
    border-color 0.65s var(--ease-premium);
  will-change: transform;

  -webkit-mask-image: -webkit-radial-gradient(white, black);
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: flat;
  transform-style: flat;
}
.home-product-card.reveal.active {
  transform: perspective(1000px) translateY(var(--lift)) rotateX(var(--rx))
    rotateY(var(--ry));
}
.home-product-card:nth-child(1) {
  grid-column: span 6;
  min-height: 510px;
}
.home-product-card:nth-child(2),
.home-product-card:nth-child(3),
.home-product-card:nth-child(4),
.home-product-card:nth-child(5),
.home-product-card:nth-child(6),
.home-product-card:nth-child(7) {
  grid-column: span 3;
}
.home-product-card:nth-child(8),
.home-product-card:nth-child(9) {
  grid-column: span 6;
}
.home-product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--mx) var(--my),
    rgba(255, 255, 255, 0.26),
    transparent 32%
  );
  mix-blend-mode: screen;
  transition: opacity 0.45s var(--ease-premium);
}
.home-product-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 5;
  border-radius: calc(var(--home-radius-lg) - 1px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}
.home-product-card:hover,
.home-product-card:focus-visible {
  --lift: -12px;
  border-color: rgba(166, 138, 100, 0.48);
  box-shadow: var(--home-shadow-strong);
}
.home-product-card:hover::before,
.home-product-card:focus-visible::before {
  opacity: 1;
}
.home-product-card-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: inherit;
}
.home-product-card .product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02) translateY(0) !important;
  filter: saturate(0.95) contrast(1.04);
  transition:
    transform 1.35s var(--ease-premium),
    filter 1.2s var(--ease-premium) !important;
  will-change: transform;
}
.home-product-card:hover .product-image,
.home-product-card:focus-visible .product-image {
  transform: scale(1.115) translateY(-8px) !important;
  filter: saturate(1.08) contrast(1.08) brightness(1.03);
}
.home-product-card-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.52) 42%,
      rgba(0, 0, 0, 0.05) 100%
    ),
    linear-gradient(135deg, rgba(166, 138, 100, 0.22), transparent 42%);
  transition:
    opacity 0.7s var(--ease-premium),
    background 0.7s var(--ease-premium);
}
.home-product-card:hover .home-product-card-scrim,
.home-product-card:focus-visible .home-product-card-scrim {
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.58) 48%,
      rgba(0, 0, 0, 0.1) 100%
    ),
    linear-gradient(135deg, rgba(166, 138, 100, 0.32), transparent 46%);
}
.home-product-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: clamp(24px, 3vw, 36px);
  color: var(--white);
  transform: translateY(10px);
  transition: transform 0.65s var(--ease-premium);
}
.home-product-card:hover .home-product-card-content,
.home-product-card:focus-visible .home-product-card-content {
  transform: translateY(0);
}
.home-product-card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 13px;
}
.home-product-card-kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent-color);
}
.home-product-card .product-title {
  color: var(--white);
  font-size: clamp(1.45rem, 2vw, 2.28rem);
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 0;
}
.home-product-card-link {
  position: absolute;
  inset: 0;
  z-index: 6;
  cursor: pointer;
  border-radius: inherit;
}
.home-product-card-link::after {
  display: none !important;
}
.home-product-card-number {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.24);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  backdrop-filter: blur(12px);
}
/* Sustainability Highlight Section */
.home-sustainability {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--primary-color);
  padding: 120px 0;
}
.home-sustainability .parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(0.88) contrast(1.08) brightness(0.72);
  transform-origin: center top;
}
.home-sustainability-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.72);
}
.home-sustainability-content {
  position: relative;
  z-index: 3;
  width: 100%;
}
.home-sustainability-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.home-sustainability-copy .home-subtitle {
  color: var(--accent-color);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.home-sustainability-copy .section-title {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 4.5rem);
  margin-bottom: 28px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.home-sustainability-lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.95rem, 1.3vw, 1.18rem);
  line-height: 1.72;
  margin: 0;
}
.home-sustainability-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.home-sustainability-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 500;
  transition:
    background 0.35s var(--ease-premium),
    border-color 0.35s var(--ease-premium);
}
.home-sustainability-list li:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(166, 138, 100, 0.28);
}
.home-sustainability-list i {
  color: var(--accent-color);
  font-size: 20px;
  flex-shrink: 0;
}
.home-testimonial {
  padding: 118px 0;
  background: var(--white);
  overflow: hidden;
}
.home-testimonial-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--home-radius-xl);
  background: rgba(255, 255, 255, 0.76);
  padding: clamp(40px, 5vw, 72px);
  box-shadow: 0 28px 70px -58px rgba(0, 0, 0, 0.3);
}
.home-testimonial-inner .quote-icon {
  font-size: 60px;
  color: var(--accent-color);
  opacity: 0.3;
  display: block;
  margin-bottom: 30px;
}
.home-testimonial-inner blockquote {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  line-height: 1.5;
  font-style: italic;
  color: var(--primary-color);
  margin: 0 0 34px;
  font-weight: 400;
}
.home-testimonial-inner cite {
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  color: var(--text-light);
}
.home-final-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--primary-color);
  color: var(--white);
  padding: 135px 0;
}
.home-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(166, 138, 100, 0.24),
      transparent 34vw
    ),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 45%);
}
.home-final-cta .container {
  position: relative;
  z-index: 1;
}
.home-final-cta .section-title {
  color: var(--white);
}
.home-final-cta p {
  max-width: 650px;
  margin: 0 auto 42px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  line-height: 1.7;
}
.home-final-cta .btn-primary {
  background: var(--white);
  color: var(--primary-color);
  border-color: var(--white);
}
.home-final-cta .btn-primary:hover {
  background: transparent;
  color: var(--white);
}
/* Certifications Carousel */
.home-clients {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--home-paper);
}
.home-clients-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 58px;
}
.home-clients-header .home-subtitle {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.home-clients-header .section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 18px;
  letter-spacing: -0.04em;
  color: var(--primary-color);
}
.home-clients-header p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.72;
  max-width: 620px;
  margin: 0 auto;
}
.clients-carousel-track {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 12px 0;

  mask-image: linear-gradient(
    to right,
    transparent,
    black 2.5%,
    black 97.5%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 2.5%,
    black 97.5%,
    transparent
  );
}
.clients-carousel-track-inner {
  display: flex;
  width: max-content;
  gap: 0;
  animation: clientsCarouselScroll 68s linear infinite;
  will-change: transform;
}
.clients-carousel-track:hover .clients-carousel-track-inner {
  animation-play-state: paused;
}
@keyframes clientsCarouselScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
.client-logo-slide {
  flex: 0 0 auto;
  width: 240px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.client-logo-card {
  width: 100%;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--home-radius-md);
  background: rgba(255, 255, 255, 0.82);
  padding: 20px 26px;
  transition:
    transform 0.45s var(--ease-premium),
    box-shadow 0.45s var(--ease-premium),
    border-color 0.45s var(--ease-premium);
  box-shadow: 0 12px 36px -26px rgba(0, 0, 0, 0.2);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.client-logo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(166, 138, 100, 0.34);
  box-shadow: 0 20px 44px -24px rgba(0, 0, 0, 0.22);
}
.client-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.68);
  transition: filter 0.35s ease;
}
.client-logo-card:hover .client-logo-img {
  filter: grayscale(0%) opacity(1);
}
@media (max-width: 900px) {
  .home-clients {
    padding: 100px 0;
  }
  .home-clients-header {
    padding-bottom: 48px;
  }
  .home-clients-header .section-title {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }
  .home-clients-header p {
    font-size: 14.5px;
  }
  .client-logo-slide {
    width: 210px;
    padding: 0 10px;
  }
  .client-logo-card {
    height: 116px;
    padding: 18px 22px;
  }
  .clients-carousel-track-inner {
    animation-duration: 56s;
  }
}
@media (max-width: 680px) {
  .home-clients {
    padding: 82px 0;
  }
  .home-clients-header {
    padding-bottom: 38px;
  }
  .home-clients-header .home-subtitle {
    gap: 9px;
    letter-spacing: 0.18em;
  }

  .client-logo-slide {
    width: 174px;
    padding: 0 8px;
  }
  .client-logo-card {
    height: 98px;
    padding: 15px 17px;
  }
  .clients-carousel-track {
    padding: 8px 0;
    mask-image: linear-gradient(
      to right,
      transparent,
      black 4%,
      black 96%,
      transparent
    );
    -webkit-mask-image: linear-gradient(
      to right,
      transparent,
      black 4%,
      black 96%,
      transparent
    );
  }
  .clients-carousel-track-inner {
    animation-duration: 46s;
  }
}
/* Homepage Responsive Rules */
@media (max-width: 1180px) {
  .home-intro-grid {
    grid-template-columns: 1fr;
  }
  .home-approach-card {
    grid-column: span 6;
  }
  .home-product-card:nth-child(1) {
    grid-column: span 6;
    min-height: 410px;
  }
  .home-product-card:nth-child(2),
  .home-product-card:nth-child(3),
  .home-product-card:nth-child(4),
  .home-product-card:nth-child(5),
  .home-product-card:nth-child(6),
  .home-product-card:nth-child(7) {
    grid-column: span 3;
  }
  .home-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .home-products-header {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .home-product-card:nth-child(1),
  .home-product-card:nth-child(2),
  .home-product-card:nth-child(3),
  .home-product-card:nth-child(4),
  .home-product-card:nth-child(5),
  .home-product-card:nth-child(6) {
    grid-column: span 6;
    min-height: 390px;
  }
  .home-product-card:nth-child(7) {
    grid-column: span 12;
    min-height: 390px;
  }
  .home-approach-card {
    grid-column: span 6;
  }
  .home-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-sustainability {
    padding: 100px 0;
  }
  .home-sustainability-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 680px) {
  .home-quicknav {
    padding: 12px 20px;
  }
  .home-quicknav-wrap {
    top: 74px;
  }
  .home-bento-grid {
    grid-template-columns: 1fr;
  }
  .home-bento-card,
  .home-bento-card:first-child,
  .home-bento-card:nth-child(4) {
    grid-column: span 1;
  }
  .home-manufacturing,
  .home-approach,
  .home-products,
  .home-intro,
  .home-testimonial {
    padding: 82px 0;
  }
  .home-product-card,
  .home-product-card:nth-child(n) {
    grid-column: 1 / -1;
    min-height: 380px;
    border-radius: 18px;
  }
  .home-approach-card {
    grid-column: span 12;
  }
  .home-stats-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .home-sustainability {
    padding: 80px 0;
  }
  .home-sustainability-copy .section-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }
  .home-sustainability-list li {
    padding: 12px 14px;
    font-size: 13.5px;
    gap: 10px;
  }
  .home-final-cta {
    padding: 96px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-product-card,
  .home-product-card .product-image,
  .home-product-card-content,
  .home-approach-card,
  .home-stat-card,
  .home-bento-card {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  .home-product-card.reveal.active {
    transform: none !important;
  }
}
