/* =================== CSS =================== */
:root {
  --primary-color: #187247;
  --primary-dark: #0d4f35;
  --primary-light-bg: #eaf4ee;
  --text-color: #1d2e28;
  --text-muted: #607069;
  --bg-light: #f7f9f7;
  --bg-section: #f2f6f3;
  --font-base: Arial, Helvetica, sans-serif;
  --transition: all 0.3s ease;
  --border-radius: 8px;
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-base);
}

html, body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #fff;
}

h1,h2,h3,h4 {
  line-height: 1.3;
  margin-bottom: 0.6em;
  font-weight: 700;
}

p {
  margin-bottom: 1em;
  font-weight: 400;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}



/* =================== Topbar =================== */
.topbar {
  background: #1b8f3a; 
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}


.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* Left-side contact info */
.topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

/* Right-side links and language selector */
.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Phone/Email link */
.topbar-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
}


.topbar-link:hover {
  color: #d4f0d6;
}


.language-select select {
  padding: 4px 10px;
  border-radius: 6px;
  border: none;
  background: #fff;
  color: #1b8f3a;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.language-select select:hover,
.language-select select:focus {
  background: #e6f4ea;
  outline: none;
}


@media (max-width: 768px) {
  .topbar-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .topbar-right {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
  }
  .topbar-link span {
    font-size: 14px;
  }
  .language-select select {
    font-size: 14px;
  }
}

/* ==========================================
   Bespring SEO Top Bar
========================================== */

.bs-seo-topbar{
    background:#1b8f3a;
    color:#fff;
    font-size:14px;
    border-bottom:1px solid rgba(255,255,255,0.15);
}

.bs-seo-topbar-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:46px;
    gap:20px;
}

/* Left */

.bs-seo-topbar-left{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
    font-weight:500;
}

.bs-seo-highlight{
    color:#ffffff;
    font-weight:600;
}

.bs-seo-highlight i{
    margin-right:6px;
}

.bs-seo-divider{
    opacity:0.5;
}

/* Right */

.bs-seo-topbar-right{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.bs-seo-contact{
    color:#fff;
    transition:all .3s ease;
    font-weight:500;
}

.bs-seo-contact i{
    margin-right:5px;
}

.bs-seo-contact:hover{
    color:#d8f5df;
}

/* Quote Button */

.bs-seo-quote-btn{
    background:#fff;
    color:#1b8f3a;
    padding:6px 14px;
    border-radius:20px;
    font-size:13px;
    font-weight:700;
    transition:all .3s ease;
}

.bs-seo-quote-btn:hover{
    background:#e6f4ea;
    transform:translateY(-1px);
}

/* Language */

.bs-seo-language{
    display:flex;
    align-items:center;
    gap:8px;
}

.bs-seo-language a{
    color:#fff;
    padding:3px 6px;
    border-radius:4px;
    transition:all .3s ease;
}

.bs-seo-language a:hover{
    background:rgba(255,255,255,0.15);
}

.bs-seo-language a.active{
    background:#fff;
    color:#1b8f3a;
    font-weight:700;
}

/* ==========================================
   Mobile
========================================== */

@media(max-width:768px){

    .bs-seo-topbar-container{
        flex-direction:column;
        justify-content:center;
        align-items:center;
        padding:8px 0;
        gap:10px;
    }

    .bs-seo-topbar-left{
        justify-content:center;
        text-align:center;
        font-size:13px;
    }

    .bs-seo-topbar-right{
        justify-content:center;
        gap:10px;
        font-size:13px;
    }

    .bs-seo-quote-btn{
        padding:5px 12px;
    }

}

/* =================== Header / Navigation =================== */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  flex-wrap: wrap;
}

/* Logo */
.logo img {
  height: 60px;
  width: auto;
  display: block;
  max-width: 100%;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* Main navigation */
.main-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav ul li {
  margin-left: 30px;
  position: relative;
}

.main-nav a {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--primary-color);
}

/* Highlight the Contact button */
.main-nav a.btn-nav {
  background: var(--primary-color);
  color: #fff;
  border-radius: 25px;
  padding: 8px 20px;
}

.main-nav a.btn-nav:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(27,143,58,0.3);
}

/* Hamburger menu (mobile) */
.hamburger {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  transition: all 0.3s ease;
}

.hamburger:hover {
  color: var(--primary-color);
}

/* =================== Responsive =================== */
@media (max-width: 1200px) {
  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    width: 220px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
  }

.main-nav.active {
  max-height: 600px; 
}

.main-nav ul {
  flex-direction: column;
}

.main-nav ul li {
  margin: 0;
  border-bottom: 1px solid #f0f0f0;
}

.main-nav ul li a {
  padding: 14px 20px;
}

.hamburger {
  display: block;
}




.contact-section {
  background-color: #e6f4ec;
  position: relative;
  padding: 60px 0;
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
}

.contact-section::before {
  content: "Contact Us";
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 100px;
  font-weight: bold;
  color: rgba(0, 128, 0, 0.08);
  z-index: 0;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 1;
}


.contact-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}


.contact-text {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.contact-text input[type="email"],
.contact-text textarea {
  font-size: 18px;
  font-weight: bold;
  font-family: 'Segoe UI', sans-serif;
  border: none;
  border-bottom: 2px solid #ccc;
  background-color: transparent;
  padding: 10px 0;
  outline: none;
  width: 100%;
  color: #000;
}


.contact-text input::placeholder {
  color: #999;
}

.contact-text textarea::placeholder {
  color: #004d26;
}

.contact-text textarea {
  resize: vertical;
  min-height: 100px;
}



.contact-button {
  background-color: #ffffff;
  color: #007a3d;
  padding: 8px 18px;
  border: 2px solid #007a3d;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 122, 61, 0.1);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.contact-button:hover {
  background-color: #007a3d;
  color: #ffffff;
  box-shadow: 0 6px 12px rgba(0, 122, 61, 0.2);
  transform: translateY(-1px);
}

.contact-button:active {
  background-color: #006837;
  box-shadow: 0 3px 6px rgba(0, 122, 61, 0.2);
  transform: translateY(0);
}


@media (max-width: 768px) {
  .contact-container {
    padding: 0 20px;
  }
}


  .contact-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .contact-text input[type="email"],
  .contact-text textarea {
    font-size: 16px;
  }

  .contact-button {
    font-size: 16px;
    padding: 12px 24px;
    align-self: flex-start;
  }

  .contact-section::before {
    font-size: 160px;
    left: 20px;
  }
}

.popup {
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 122, 61, 0.95);
  color: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  text-align: center;
  animation: fadeIn 0.3s ease-in-out;
}


#popup-error {
  background-color: rgba(200, 0, 0, 0.9);
}

.popup-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 10px;
}

.popup-text {
  font-size: 18px;
  margin: 0;
}

.hidden {
  display: none;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, -60%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}


/* =================== Floating Contact =================== */
.floating-contact {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 100;
}

.contact-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  transition: var(--transition);
}

.contact-icon:hover { transform: translateY(-3px); }
.whatsapp { background: #25D366; }
.back-top { background: var(--primary-dark); }

.crc-footer {
  background: #1b1b1b;
  color: #ddd;
  padding: 60px 20px 20px;
  font-size: 14px;
  line-height: 1.6;
  border-top: 4px solid var(--primary-color);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-col h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-col p, .footer-col li, .footer-col a {
  color: #ccc;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-col a:hover { color: var(--primary-color); }

.footer-links ul li { margin-bottom: 8px; }

.social-icons1 {
  display: flex;
  gap: 12px;
  margin: 16px 0;
  padding: 0;
}

.social-icons1 li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #333;
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icons1 li a:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.contact-btn-footer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 26px;
  background: var(--primary-color);
  color: #fff;
  border-radius: var(--border-radius);
  font-weight: 600;
  margin-top: 12px;
  transition: all 0.3s ease;
}

.contact-btn-footer:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 16px;
  text-align: center;
  font-size: 13px;
  color: #888;
}

@media (max-width: 768px) {
  .footer-grid { flex-direction: column; gap: 30px; }
  .footer-col { min-width: 100%; }
  .social-icons { justify-content: flex-start; }
}



.subpage-banner {
  position: relative;
  height: 45vh; 
  min-height: 220px;
  max-height: 260px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 4px solid var(--primary-color); 
}

.subpage-banner .banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.1)
  ); 
}


.subpage-banner-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 0 20px;
  max-width: 900px;
  animation: fadeInUp 1s ease forwards;
}

.subpage-banner-content h1 {
  font-size: clamp(32px, 6vw, 54px);
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.subpage-banner-content p {
  font-size: clamp(16px, 3vw, 22px);
  font-weight: 300;
  color: #f1f1f1;
  max-width: 700px;
  margin: 0 auto;
}


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


.breadcrumb {
  padding: 20px;
  font-size: 14px;
  color: #666;
}


.about-section {
  padding: 80px 20px;
  background-color: #fff;
}


.container.narrow {
  max-width: 800px;
  text-align: left;
}

.container.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
}


.about-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #005b7f;
}


.text-block {
  flex: 1;
  min-width: 300px;
}

.text-block p,
.container.narrow p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
}

.text-block em,
.container.narrow em {
  color: #666;
  font-style: italic;
}


.image-block {
  flex: 1;
  min-width: 300px;
}

.image-block figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.image-block img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(40%) contrast(1.1);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.image-block:hover img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.02);
}

.image-block figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: #666;
  font-style: italic;
  text-align: center;
}


.bespring-breadcrumb {
  background: #f9f9f9;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
  color: #666;
  padding: 18px 0 10px 0;
}

.bespring-breadcrumb a {
  color: #4CAF50;
  font-weight: 500;
}

.bespring-breadcrumb p {
  margin: 0;
}


.bespring-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}


.bespring-tab-nav {
  background: #f4f4f4;
}


.bespring-tab-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.bespring-tab-nav li {
  margin: 0;
  padding: 0;
}

.bespring-tab-nav a {
  display: block;
  padding: 14px 24px;
  color: #333;
  font-size: 15px;
  font-weight: 500;
}

.bespring-tab-nav li.active a {
  background: #4CAF50;
  color: #fff;
}


.bespring-profile {
  padding: 40px 0;
}


.bespring-flexbox {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.bespring-left-img img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border: 1px solid #eee;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.bespring-right-text {
  flex: 1;
}

.bespring-right-text h2 {
  font-size: 22px;
  font-weight: bold;
  color: #222;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.bespring-right-text h3 {
  font-size: 20px;
  font-weight: bold;
  color: #4CAF50;
  margin: 0 0 20px;
}

.bespring-right-text p {
  margin: 0 0 16px;
  color: #444;
  font-size: 15px;
  line-height: 1.8;
}


.bespring-btn-group {
  margin-top: 20px;
  display: flex;
  gap: 16px;
}


.bespring-btn-solid {
  background: #4CAF50;
  color: #fff;
  padding: 6px 16px;
    font-size: 14px;
  border-radius: 4px;
  font-weight: 600;
  border: none;
  transition: all 0.3s;
}

.bespring-btn-solid:hover {
  background: #43a047;
}

.bespring-btn-outline {
  background: transparent;
  color: #4CAF50;
  border: 2px solid #4CAF50;
  padding: 5px 14px;
    font-size: 14px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s;
}

.bespring-btn-outline:hover {
  background: #4CAF50;
  color: #fff;
}


.bespring-production-img {
  margin-top: 40px;
  text-align: center;
    display: flex;
     justify-content: center;
}

.bespring-production-img img {
  width: 100%;
  max-width: 600px; 
  height: auto;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 6px;
}


.bespring-market-imgs {
  margin-top: 40px;
  display: flex;
    flex-direction: column;
    align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.bespring-market-imgs img {
  width: 100%;
  max-width: 600px; 
  height: auto;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 6px;
}



.bespring-certification-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}


.bespring-certification-gallery .cert-item {
  flex: 1 1 220px;          
  max-width: 300px;          
  height: 240px;             
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 8px;        
  overflow: hidden;          
  background: linear-gradient(135deg, #fdfdfd, #f3f3f3); 
  box-shadow: 0 6px 16px rgba(0,0,0,0.12); 
  transition: transform 0.3s, box-shadow 0.3s, border 0.3s;
  border: 1px solid #e0e0e0; 
}


.bespring-certification-gallery .cert-item:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 24px rgba(0,0,0,0.18); 
  border: 1px solid #1b8f3a; 
}


.bespring-certification-gallery .cert-item img {
  width: 100%;
  height: 100%;
  object-fit: contain; 
  display: block;
  transition: transform 0.3s;
}


.bespring-certification-gallery .cert-item img:hover {
  transform: scale(1.03);
}




.bespring-core-img { 
    margin-top: 40px; 
    text-align: center; 
            display: flex;
     justify-content: center;
}


.bespring-core-img img {
  width: 100%;
  max-width: 600px; 
  height: auto;
        display: flex;
     justify-content: center;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 6px;
}





































































.product-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.product-list li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #333;
}


@media (max-width: 992px) {
  .about-section { padding: 60px 20px; }
  .container.grid { gap: 30px; }
}

@media (max-width: 768px) {
  .about-section { padding: 40px 15px; }
  .about-section h2 { font-size: 24px; }
}


.about-section {
  padding: 80px 20px;
  background-color: #fff;
}


.container.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
}

.text-block {
  flex: 1;
  min-width: 300px;
}

.text-block p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
}

.image-block {
  flex: 1;
  min-width: 300px;
}

.image-block figure {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.image-block img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(30%) contrast(1.1);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.image-block:hover img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.02);
}

.image-block figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: #666;
  font-style: italic;
  text-align: center;
}
















































.products-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}


.breadcrumb {
  font-size: 14px;
  margin-bottom: 15px;
  color: var(--text-muted);
}
.breadcrumb a {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}
.breadcrumb a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}
.breadcrumb span {
  color: var(--text-muted);
}


.page-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 10px 0 20px;
  position: relative;
}
.page-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  margin-top: 8px;
  border-radius: 2px;
}


.intro-text {
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--text-muted);
}
.intro-text a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}
.intro-text a:hover {
  text-decoration: underline;
}


.cta {
  margin-bottom: 30px;
}
.cta-btn {
  background: var(--primary-color);
  color: #fff;
  padding: 10px 18px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  display: inline-block;
  transition: var(--transition);
}
.cta-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(27,143,58,0.25);
}


    .alphabet-nav {
      margin: 15px 0;
      font-size: 15px;
      text-align: center;
    }
    .alphabet-nav a {
      margin: 0 6px;
      color: var(--primary-color);
      text-decoration: none;
      font-weight: 600;
      transition: var(--transition);
    }
    .alphabet-nav a:hover {
      color: var(--primary-dark);
      text-decoration: underline;
    }

    
    .toggle-btn {
      display: block;
      margin: 0 auto 2rem;
      padding: 0.6rem 1.4rem;
      font-size: 1rem;
      background-color: var(--primary-color);
      color: #fff;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: background-color 0.2s ease;
    }
    .toggle-btn:hover {
      background-color: var(--primary-dark);
    }

    
    .product-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
      margin-top: 20px;
    }
    .product-col {
      background: var(--primary-light-bg);
      padding: 18px 20px;
      border-radius: var(--border-radius);
      box-shadow: 0 6px 16px rgba(0,0,0,0.05);
      transition: var(--transition);
    }
    .product-col:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 22px rgba(0,0,0,0.1);
    }
    .product-col h2 {
      color: var(--primary-color);
      margin-bottom: 10px;
      font-size: 22px;
      border-bottom: 2px solid var(--primary-light-bg);
      padding-bottom: 6px;
    }
    .product-col ul li {
      margin: 6px 0;
      font-size: 15px;
      color: var(--text-color);
    }
    .en-name {
      display: block;
      font-size: 0.88em;
      color: var(--text-muted);
      margin-left: 1rem;
    }
    .hidden {
      display: none;
    }


 
main.industries-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}


.breadcrumb {
  font-size: 14px;
  margin-bottom: 15px;
  color: var(--text-muted);
}
.breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}
.breadcrumb a:hover { 
  color: var(--primary-dark); 
  text-decoration: underline;
}
.breadcrumb span {
  color: var(--text-muted);
}


.page-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
}
.page-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  margin-top: 8px;
  border-radius: 2px;
}


.intro-text {
  margin-bottom: 40px;
  font-size: 16px;
  color: var(--text-color);
}


.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}


.industry-card {
  background: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.industry-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}
.industry-card:hover img {
  transform: scale(1.05);
}

.industry-content {
  padding: 15px 20px 20px;
}

.industry-card h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.industry-card h2 .arrow {
  margin-left: 6px;
  color: var(--text-muted);
  font-weight: 400;
}

.industry-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 12px;
}


.sub-list {
  list-style: none;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 14px;
}
.sub-list li {
  margin-bottom: 4px;
  position: relative;
}
.sub-list li::before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 16px;
  line-height: 1;
  transform: translateX(-14px);
}


@media (max-width: 768px) {
  main.industries-page { padding: 20px 15px; }
  .industry-card img { height: 180px; }
  .industry-card h2 { font-size: 18px; }
  .industry-card p, .sub-list { font-size: 14px; }
}



main.services-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}


.breadcrumb {
  font-size: 14px;
  margin-bottom: 15px;
  color: var(--text-muted);
}
.breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}
.breadcrumb a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}
.breadcrumb span {
  color: var(--text-muted);
}


.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 50px;
}
.hero-text h2 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-text h1 {
  font-size: 32px;
  font-weight: bold;
  margin: 15px 0;
  line-height: 1.3;
  color: var(--text-color);
}
.hero-text p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 500px;
}
.hero-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Intro Section */
.intro {
  margin: 30px 0 50px;
  text-align: center;
}
.intro p {
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Comprehensive Section */
.comprehensive {
  margin-bottom: 60px;
}
.comprehensive h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-color);
}
.comprehensive p {
  margin-bottom: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}
.comprehensive ul {
  margin: 12px 0 0 20px;
  padding: 0;
}
.comprehensive li {
  margin-bottom: 6px;
  color: var(--text-muted);
  list-style: disc;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.service-card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.service-card h3 {
  font-size: 20px;
  margin: 15px;
  color: var(--primary-color);
}
.service-card p {
  font-size: 15px;
  margin: 0 15px 15px;
  color: var(--text-muted);
  flex-grow: 1;
  line-height: 1.5;
}
.service-card a {
  display: inline-block;
  margin: 0 15px 20px;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.service-card a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}



main.news-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}


.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  color: #555;
}
.breadcrumb a {
  color: #006699;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: #004466;
}
.breadcrumb span {
  color: #888;
}


.page-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin: 10px 0 30px;
  text-align: left;
}


.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}


.news-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.news-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news-card .date {
  display: block;
  font-size: 13px;
  color: #777;
  margin: 12px 15px 5px;
}

.news-card h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 5px 15px 10px;
  color: #222;
  line-height: 1.4;
  transition: color 0.2s;
}

.news-card h2:hover {
  color: #1b8f3a;
}

.news-card h2 .arrow {
  margin-left: 6px;
  font-weight: normal;
  color: #1b8f3a;
}

.news-card p {
  font-size: 14px;
  color: #555;
  margin: 0 15px 15px;
  flex-grow: 1;
}



.news-detail-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}


.breadcrumb {
  font-size: 14px;
  margin-bottom: 25px;
  color: #555;
}
.breadcrumb a {
  color: #006699;
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumb a:hover {
  color: #004466;
}
.breadcrumb span {
  color: #777;
}


.news-title {
  font-size: 34px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.4;
}


.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.news-meta .date {
  font-weight: 500;
  color: #444;
}

.news-meta .social-icons a {
  margin-left: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: 14px;
  color: #006699;
  border: 1px solid #006699;
  border-radius: 50%;
  transition: background 0.3s, color 0.3s;
}
.news-meta .social-icons a:hover {
  background: #006699;
  color: #fff;
}


.divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 20px 0 30px;
}


.news-content p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
}

.news-content strong {
  color: #006699;
}

.news-content blockquote {
  margin: 25px 0;
  padding: 18px 22px;
  border-left: 4px solid #006699;
  background: #f6f9fc;
  font-size: 16px;
  font-style: italic;
  color: #444;
  border-radius: 6px;
}


.news-content figure {
  margin: 30px 0;
  text-align: center;
}

.news-content img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.news-content figcaption {
  font-size: 14px;
  color: #777;
  margin-top: 8px;
}



main.product-category-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333;
  background: #fefefe;
}


.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
}

.breadcrumb a {
  color: #1b8f3a;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: #146b2b;
}
.breadcrumb span {
  color: #777;
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}
.hero-text {
  flex: 2;
}
.hero-text h1 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #1b8f3a;
}
.hero-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  max-width: 550px;
      margin: 0;
  text-align: left; 
    padding-bottom: 50px;
    
}
.download-link {
  color: #1b8f3a;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.2s;
}
.download-link:hover {
  color: #146b2b;
  text-decoration: underline;
}
.hero-image {
  flex: 1;
    padding: 0 100px 40px 20px;
}
.hero-image img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

/* Products Section */
.products-section h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #222;
}
.products-section p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}
.accordion-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
.accordion-group h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}
.accordion .accordion-header {
  width: 100%;
  text-align: left;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #f8f8f8;
  cursor: pointer;
  font-size: 15px;
  margin-bottom: 5px;
  transition: background 0.2s, color 0.2s;
}
.accordion .accordion-header:hover,
.accordion .accordion-header.active {
  background: #e6f0f5;
  color: #1b8f3a;
}
.accordion .accordion-body {
  display: none;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-top: none;
  font-size: 14px;
  color: #555;
  background: #fafafa;
  line-height: 1.6;
}



@media (max-width: 992px) {
  .hero-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-text {
    flex: unset;
    max-width: 90%;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 15px;
    line-height: 1.8;
    padding-bottom: 30px;
    max-width: 100%;
    text-align: center;
  }

  .hero-image {
    flex: unset;
    padding: 0;
    width: 80%;
  }

  .hero-image img {
    width: 100%;
    height: auto;
  }
}


@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 24px;
  }

  .hero-text p {
    font-size: 14px;
    line-height: 1.8;
  }

  .hero-image {
    width: 100%;
    padding: 0 10px;
  }
}

/*============= Quote Form ================*/
.quote-section {
  margin-top: 60px;
}
.quote-section h2 {
  font-size: 26px;
  text-align: center;
  margin-bottom: 25px;
  color: #222;
}
.quote-form {
  border: 1px solid #1b8f3a;
  border-radius: 6px;
  padding: 25px;
  background: #fff;
}
.form-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.form-row input,
.form-row select,
.form-row textarea {
  flex: 1;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 14px;
}
.form-row textarea {
  min-height: 100px;
  resize: vertical;
}
.form-row.checkbox {
  font-size: 14px;
}
.form-row.checkbox a {
  color: #1b8f3a;
  text-decoration: none;
}
.form-row.checkbox a:hover {
  color: #1b8f3a;
}
.btn-submit {
  display: inline-block;
  background: #1b8f3a;
  color: #fff;
  padding: 12px 22px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-submit:hover {
  background: #146b2b;
}

.contact-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333;
  background: #fff;
}

.bespring-breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  color: var(--text-muted);
}
.bespring-breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
}
.bespring-breadcrumb span {
  color: #777;
}

.page-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 30px;
}



.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.contact-info h2 {
  font-size: 20px;
  margin-top: 20px;
  color: var(--primary-color);
}

.contact-info p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.contact-info a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  aspect-ratio: 16 / 9; 
}

.contact-form {
  margin-top: 40px;
}

.contact-form h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.contact-form form {
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 16px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
}

.contact-form textarea {
  resize: vertical;
}

.cta-btn {
  background: var(--primary-color);
  color: #fff;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  display: inline-block;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(27,143,58,0.25);
}




@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr; 
    gap: 30px;
  }

  .contact-info {
    text-align: center;
    order: 1; 
  }

  .contact-info h2 {
    font-size: 18px;
  }

  .contact-info p {
    font-size: 14px;
    line-height: 1.7;
  }

  .contact-map {
    order: 2; 
  }

  .contact-map iframe {
    width: 100%;
    height: auto;
    min-height: 400px;
  }
}


@media (max-width: 600px) {
  .contact-info h2 {
    font-size: 17px;
  }

  .contact-info p {
    font-size: 13px;
  }

  .contact-map iframe {
    min-height: 350px;
  }
}


/* === Homepage banner isolation & hardening === */

/* =================== Banner =================== */
.crc-banner {
  position: relative;
  height: 85vh;
  min-height: 400px;
  max-height: 620px;
  overflow: hidden;
}

.banner-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.banner-slide {
  flex: 0 0 100%;
  position: relative;
overflow: hidden;
    width: 100%;
    height: 720px;     
  display: flex;
  align-items: center;          
  justify-content: flex-start;  
  text-align: left;             
  background-size: cover;
  background-position: center;
  color: #fff;
}


.banner-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;     
    object-position: center;
    z-index: 1;            
}

/* Overlay for better text visibility */
.banner-overlay {
  position: absolute;
top: 0;
    left: 0;
    width: 100%;
    height: 100%;    
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 2;
}


.banner-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-inline: 20px;         
}


.banner-inner {
  max-width: 700px;
}


.banner-pretitle {
  display: block;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;   
  text-shadow: 1px 1px 4px rgba(0,0,0,0.45);
}

.banner-content h1 {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: 0.4px;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

.banner-content h2 {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: 0.4px;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

.banner-content p {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.45);
}


.banner-controls button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(27,143,58,0.7);
  color: #fff;
  border: none;
  font-size: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s, transform 0.3s;
}

.banner-controls button:hover {
  background: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.banner-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background-color: #1b8f3a;         
  border-radius: 999px;              
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.banner-button:hover {
  background-color: var(--primary-color); 
  transform: scale(1.05);
}



#prev { left: 16px; }
#next { right: 16px; }

/* Slide Dots */
.banner-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.banner-dots span {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.banner-dots span.active {
  background: var(--primary-color);
}

/* =================== Responsive =================== */
@media (max-width: 992px) {
  .banner-content { padding-inline: 40px; }
  .banner-content h1 { font-size: clamp(24px, 6vw, 40px); }
  .banner-content h2 { font-size: clamp(24px, 6vw, 40px); }
  .banner-content p { font-size: clamp(14px, 3vw, 18px); }
}

@media (max-width: 768px) {
  .crc-banner { height: 56vh; min-height: 320px; }
  .banner-content { padding-inline: 20px; }
  .banner-content h1 { font-size: 22px; }
  .banner-content h2 { font-size: 22px; }  
  .banner-content p { font-size: 14px; }
  .banner-dots span { width: 12px; height: 12px; }
}

@media (max-width: 768px) {
  .banner-button {
    padding: 8px 18px;
    font-size: 14px;
  }
}


    .fi-ingredient-list {
      max-width: 800px;
      margin: 0 auto;
      font-family: "Segoe UI", sans-serif;
    }

    .fi-category {
      border: 1px solid #ccc;
      margin-bottom: 10px;
      border-radius: 6px;
      background-color: #fff;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .fi-category-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 14px 20px;
      background-color: #eaeaea;
      cursor: pointer;
    }

    .fi-category-header h3 {
      margin: 0;
      font-size: 18px;
      font-weight: bold;
      color: #333;
    }

    .fi-arrow {
      transition: transform 0.3s ease;
      font-size: 16px;
    }

    .fi-category.fi-active .fi-arrow {
      transform: rotate(180deg);
    }

    .fi-items {
      list-style: none;
      margin: 0;
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .fi-items li {
      padding: 10px 0;
      border-bottom: 1px solid #eee;
    }

    .fi-category.fi-active .fi-items {
      max-height: 2000px;
    }


.news-main-container {
  max-width: 1200px;
  margin: 0 auto;
    padding: 10px 0 30px 0;
  position: relative;
  z-index: 1;
}


@media (max-width: 768px) {
  .news-main-container {
  }
}

.company-intelligence {
  max-width: 1200px;
  margin: 80px auto;
  padding: 40px;
  font-family: Arial, sans-serif;
  color: #1a1a1a;
}

/* HEADER */
.ci-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.ci-header p {
  font-size: 16px;
  color: #555;
  max-width: 900px;
  line-height: 1.6;
}

/* FACT GRID (GEO CORE) */
.ci-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.ci-fact-card {
  background: #f6f8fa;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e6e6e6;
}

.ci-label {
  display: block;
  font-size: 12px;
  color: #777;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.ci-value {
  font-size: 14px;
  font-weight: 600;
}

/* STORY */
.ci-story {
  margin-top: 40px;
  max-width: 900px;
}

.ci-story h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.ci-story p {
  line-height: 1.7;
  color: #444;
  margin-bottom: 12px;
}

/* ENTITY MAP */
.ci-entity-map {
  margin-top: 40px;
  padding: 25px;
  background: #ffffff;
  border-left: 4px solid #2b6cb0;
}

.ci-entity-map h3 {
  margin-bottom: 15px;
}

.ci-entity-map ul {
  list-style: none;
  padding: 0;
}

.ci-entity-map li {
  padding: 6px 0;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ci-facts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .ci-facts {
    grid-template-columns: 1fr;
  }
}

/* ================================
   PRODUCT CENTER (SAFE VERSION)
================================ */

.bs-prod{
  padding: 70px 0;
  background: var(--bg-light);
  overflow-x: hidden; 
}

/* Header */
.bs-prod__header{
  text-align: center;
  margin-bottom: 30px;
}

.bs-prod__title{
  font-size: 32px;
  color: var(--text-color);
}

.bs-prod__desc{
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
}

/* Categories */
.bs-prod__cats{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  padding: 0 10px;
}

.bs-prod__cat{
  display: inline-flex;
  white-space: nowrap; 
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
  transition: var(--transition);
}

.bs-prod__cat:hover{
  background: var(--primary-color);
  color: #fff;
}



.bs-prod__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

/* tablet */
@media (max-width: 1024px){
  .bs-prod__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* mobile */
@media (max-width: 768px){
  .bs-prod__grid{
    grid-template-columns: 1fr;
  }
}

/* ================================
   CARD
================================ */

.bs-prod__card{
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  min-width: 0;
  transition: var(--transition);
}

.bs-prod__card:hover{
  transform: translateY(-5px);
}

/* image */
.bs-prod__img{
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.bs-prod__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* body */
.bs-prod__body{
  padding: 16px;
  min-width: 0;
}

.bs-prod__name{
  font-size: 16px;
  margin-bottom: 5px;
  word-break: break-word;
}

.bs-prod__name span{
  font-size: 13px;
  color: var(--text-muted);
}

.bs-prod__cas{
  font-size: 13px;
  color: var(--text-muted);
}

.bs-prod__text{
  font-size: 14px;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* tags */
.bs-prod__tags{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0;
}

.bs-prod__tags span{
  font-size: 12px;
  padding: 3px 8px;
  background: #eef6f0;
  border-radius: 6px;
  white-space: nowrap; 
}

/* actions */
.bs-prod__actions{
  display: flex;
  gap: 10px;
}

.bs-prod__btn{
  flex: 1;
  text-align: center;
  padding: 8px;
  font-size: 13px;
  border-radius: 6px;
  transition: var(--transition);
}

.bs-prod__btn--primary{
  background: var(--primary-color);
  color: #fff;
}

.bs-prod__btn--outline{
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

/* footer */
.bs-prod__footer{
  text-align: center;
  margin-top: 30px;
}

.bs-prod__more{
  display: inline-block;
  padding: 10px 18px;
  background: #222;
  color: #fff;
  border-radius: 6px;
}

/* ================================
   Industry Cases (Bespring Safe Version)
================================ */

.bs-case{
  padding: 70px 0;
  background: #fff;
  overflow-x: hidden; 
}

/* Header */
.bs-case__header{
  text-align: center;
  margin-bottom: 40px;
}

.bs-case__title{
  font-size: 32px;
  color: var(--text-color);
}

.bs-case__subtitle{
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-muted);
}



.bs-case__viewport{
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Track */
.bs-case__track{
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

/* Card */
.bs-case__card{
  flex: 0 0 33.333%;
  box-sizing: border-box;
  padding: 0 12px;

  min-width: 0;
}

/* responsive */
@media (max-width: 1024px){
  .bs-case__card{
    flex: 0 0 50%;
  }
}

@media (max-width: 768px){
  .bs-case__card{
    flex: 0 0 100%;
  }
}

/* ================================
   CARD STYLE
================================ */

.bs-case__img{
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
}

.bs-case__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bs-case__content{
  padding: 14px 5px;
  min-width: 0;
}

.bs-case__tag{
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  background: var(--primary-light-bg);
  color: var(--primary-dark);
  border-radius: 999px;
  margin-bottom: 10px;
  white-space: nowrap;
}

.bs-case__name{
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-color);
}

.bs-case__text{
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* link */
.bs-case__link{
  display: inline-block;
  margin-top: 10px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
}

/* ================================
   CONTROLS
================================ */

.bs-case__controls{
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.bs-case__btn{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  transition: var(--transition);
}

.bs-case__btn:hover{
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.bq-factory-showcase{
    position:relative;
    overflow:hidden;
    padding:90px 0;
    background:linear-gradient(135deg,#07291d,#0b3b29,#0d4f35);
}

.bq-factory-container{
    width:min(1400px,92%);
    margin:auto;
    position:relative;
    z-index:2;
}

/* TEXT */

.bq-factory-header{
    text-align:center;
    margin-bottom:40px;
}

.bq-factory-title{
    color:#fff;
    font-size:40px;
    margin-bottom:15px;
}

.bq-factory-subtitle{
    color:rgba(255,255,255,.75);
    max-width:900px;
    margin:auto;
    line-height:1.8;
}

/* GEO META (hidden but useful for AI) */
.bq-factory-meta{
    display:none;
}

/* SLIDER */

.bq-factory-slider-wrapper{
    display:flex;
    align-items:center;
    gap:18px;
}

.bq-factory-slider{
    overflow:hidden;
    flex:1;
}

.bq-factory-track{
    display:flex;
    gap:20px;
    will-change:transform;
}

/* CARD FIXED SIZE (IMPORTANT) */

.bq-factory-card{
    flex:none;
    width:380px;
    height:240px;
    border-radius:12px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    position:relative;
}

.bq-factory-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* caption improves GEO */
.bq-factory-card figcaption{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    padding:6px 10px;
    font-size:12px;
    color:#fff;
    background:rgba(0,0,0,.45);
}

/* NAV */

.bq-factory-nav{
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    cursor:pointer;
    background:rgba(255,255,255,.12);
    color:#fff;
    font-size:20px;
}

/* RESPONSIVE */

@media(max-width:992px){
    .bq-factory-card{
        width:240px;
        height:155px;
    }
}

@media(max-width:768px){
    .bq-factory-card{
        width:220px;
        height:140px;
    }
}






/* =================== News Section =================== */
.bs-news-section {
  padding: 80px 0;
  background: var(--bg-light);
  overflow-x: hidden; 
}

/* Header */
.bs-section-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 10px;
}

.bs-section-title {
  font-size: 2rem;
  color: var(--text-color);
}

.bs-section-subtitle {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* Layout */
.bs-news-layout {
  display: flex;
  gap: 24px;
  align-items: stretch;
  max-width: 100%;
  min-width: 0;
  flex-wrap: wrap;
}

/* Featured */
.bs-news-featured {
  flex: 1 1 45%;
  background: #fff;
  padding: 24px;
  border-radius: var(--border-radius);
  position: relative;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  min-width: 280px;
  overflow: hidden;
}

.bs-news-date-badge {
  position: absolute;
  top: 16px;
  left: 16px;

  background: var(--primary-color);
  color: #fff;
  padding: 6px 10px;
  font-size: 0.75rem;
  border-radius: 4px;
}

.bs-news-featured-title {
  margin-top: 40px;
  font-size: 1.4rem;
  line-height: 1.4;
}

.bs-news-featured-desc {
  color: var(--text-muted);
  margin-top: 12px;
}

/* Link */
.bs-news-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--primary-color);
  font-weight: 600;
}

/* List */
.bs-news-list {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 280px;
}

/* Item */
.bs-news-item {
  background: #fff;
  padding: 16px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  min-width: 0;
  overflow: hidden;
}

.bs-news-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.bs-news-item-title {
  font-size: 1rem;
  margin-bottom: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bs-news-item-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =================== Responsive =================== */
@media (max-width: 900px) {
  .bs-news-layout {
    flex-direction: column;
  }

  .bs-news-featured,
  .bs-news-list {
    flex: 1 1 100%;
  }
}

/* ================================
   GLOBAL MARKET SECTION (BESPRING)
================================ */

.bs-global{
  padding: 80px 0;
  background: #092f22; 
  color: #fff;
  overflow-x: hidden;
}

/* Header */
.bs-global__header{
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.bs-global__title{
  font-size: 32px;
  font-weight: 700;
}

.bs-global__subtitle{
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.7;
  margin-top: 10px;
}

/* ================================
   STATS ROW
================================ */

.bs-global__stats{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 50px;
  text-align: center;
}

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

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

.bs-global__stat{
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
}

.bs-global__number{
  font-size: 28px;
  font-weight: 700;
  color: #22c55e; 
}

.bs-global__label{
  font-size: 13px;
  color: #cbd5e1;
}

/* ================================
   MAIN GRID
================================ */

.bs-global__grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 900px){
  .bs-global__grid{
    grid-template-columns: 1fr;
  }
}

/* TEXT */
.bs-global__content{
  min-width: 0; 
}

.bs-global__heading{
  font-size: 20px;
  margin-bottom: 15px;
}

.bs-global__text{
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 12px;

  word-break: break-word; 
}

/* Regions */
.bs-global__regions{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.bs-global__regions span{
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  white-space: nowrap;
}

/* Visual */
.bs-global__visual{
  min-width: 0;
}

.bs-global__visual img{
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ================================
   CTA
================================ */

.bs-global__cta{
  text-align: center;
  margin-top: 40px;
}

.bs-global__btn{
  display: inline-block;
  padding: 12px 22px;
  background: #22c55e;
  color: #0b1220;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s;
}

.bs-global__btn:hover{
  background: #16a34a;
}

.bs-company-split {
  padding: 80px 0;
  background: #ffffff;
}

.bs-company-split__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 20px;
}

/* LEFT */
.bs-company-split__content {
  flex: 1;
}

.bs-company-split__title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.bs-company-split__desc {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}

/* STATS */
.bs-company-split__stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.bs-company-split__stat {
  display: flex;
  flex-direction: column;
}

.bs-company-split__number {
  font-size: 26px;
  font-weight: 700;
  color: #0a5;
}

.bs-company-split__label {
  font-size: 13px;
  color: #777;
}

/* RIGHT IMAGE */
.bs-company-split__media {
  flex: 1;
}

.bs-company-split__img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* MOBILE */
@media (max-width: 768px) {
  .bs-company-split__container {
    flex-direction: column;
  }

  .bs-company-split__title {
    font-size: 28px;
  }
}




/* ==============================
   PRODUCT DETAIL PAGE
   BRAND GREEN SYSTEM (FINAL OPTIMIZED)
============================== */

/* ================= PAGE LAYOUT ================= */

.product-detail-container {
  padding: 50px 0;
}

/* ================= HERO ================= */

.product-hero {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  margin-bottom: 70px;
}


.product-hero-left {
  flex: 1.3;
}


.product-hero-right {
  flex: 1.0;
}

/* ================= TITLE ================= */

.product-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.product-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

/* ================= TAGS ================= */

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.product-tags span {
  background: var(--primary-light-bg);
  color: var(--primary-dark);
  padding: 6px 12px;
  border-radius: var(--border-radius);
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(27, 143, 58, 0.15);
}

/* ================= CTA BUTTONS ================= */

.product-action-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Quote Button */
.btn-quote {
  background: var(--primary-color);
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 6px 18px rgba(27, 143, 58, 0.25);
}

.btn-quote:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* WhatsApp Button */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--border-radius);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  filter: brightness(0.95);
  transform: translateY(-2px);
}

/* ================= IMAGE GALLERY ================= */

.product-gallery {
  background: #fff;
  border: 1px solid #eee;
  padding: 16px;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}


.main-image img {
  width: 100%;
  height: 280px; 
  object-fit: cover;
  border-radius: var(--border-radius);
  transition: var(--transition);
}


.thumbnail-images {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.thumbnail-images img {
  width: 80px;  
  height: 80px; 
  object-fit: cover;
  border-radius: var(--border-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.thumbnail-images img:hover {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.thumbnail-images img.active {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(27, 143, 58, 0.15);
}

/* ================= PRODUCT INFO ================= */

.product-info-grid {
  display: flex;
  gap: 50px;
  margin-bottom: 70px;
}

.product-info-left {
  flex: 2;
}

.product-info-right {
  flex: 1;
}

.product-info-left h2 {
  font-size: 20px;
  color: var(--primary-dark);
  margin-top: 30px;
}

.product-info-left p {
  color: var(--text-muted);
  line-height: 1.8;
}

/* ================= SPEC TABLE ================= */

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  font-size: 14px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.spec-table th {
  background: var(--primary-light-bg);
  color: var(--primary-dark);
  text-align: left;
  padding: 12px;
  font-weight: 600;
}

.spec-table td {
  border-bottom: 1px solid #eee;
  padding: 12px;
}

/* ================= INFO BOX ================= */

.info-box {
  background: var(--bg-light);
  border: 1px solid #eee;
  padding: 18px;
  border-radius: var(--border-radius);
  margin-bottom: 16px;
  transition: var(--transition);
}

.info-box:hover {
  border-color: var(--primary-color);
}

.info-box h3 {
  font-size: 16px;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.info-box ul {
  padding-left: 18px;
  color: var(--text-muted);
}

/* ================= FAQ ================= */

.product-faq {
  background: var(--bg-section);
  padding: 50px;
  border-radius: var(--border-radius);
  margin: 80px 0;
}

.product-faq h2 {
  color: var(--primary-dark);
  margin-bottom: 25px;
}

.faq-item {
  background: #fff;
  padding: 18px;
  border-radius: var(--border-radius);
  margin-bottom: 12px;
  border: 1px solid #eee;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary-color);
}

.faq-item h3 {
  font-size: 15px;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ================= RELATED PRODUCTS ================= */

.related-products {
  margin: 70px 0;
}

.related-products h2 {
  color: var(--primary-dark);
  margin-bottom: 25px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.related-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
}

.related-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 25px rgba(27, 143, 58, 0.1);
}

.related-card img {
  height: 170px;
  object-fit: cover;
}

.related-card h3 {
  padding: 12px;
  font-size: 15px;
  color: var(--primary-dark);
}

/* ================= QUOTE FORM ================= */

.quote-section {
  background: #fff;
  border: 1px solid #eee;
  padding: 40px;
  border-radius: var(--border-radius);
  margin: 90px 0;
}

.quote-section h2 {
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(27, 143, 58, 0.15);
}

/* SUBMIT BUTTON */

.btn-submit {
  background: var(--primary-color);
  color: #fff;
  padding: 12px 26px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover {
  background: var(--primary-dark);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .product-hero {
    flex-direction: column;
  }

  .product-info-grid {
    flex-direction: column;
  }

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

  .product-faq {
    padding: 25px;
  }
}

@media (max-width: 600px) {

  .related-grid {
    grid-template-columns: 1fr;
  }

  .product-title {
    font-size: 30px;
  }

  .product-action-buttons {
    flex-direction: column;
  }

  .btn-quote,
  .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }

  .main-image img {
    height: 320px; 
  }
}

/* ==============================
   2026 Brand Header Refresh
   Deep forest green anchors the pale-green logo.
============================== */

.bs-seo-topbar {
  background: #0d4f35;
  border-bottom: 0;
  font-size: 12px;
  letter-spacing: 0.01em;
}

.bs-seo-topbar-container {
  min-height: 36px;
  gap: 24px;
}

.bs-seo-topbar-left,
.bs-seo-topbar-right {
  gap: 14px;
}

.bs-seo-topbar-left {
  color: rgba(255, 255, 255, 0.76);
}

.bs-seo-highlight {
  color: #fff;
}

.bs-seo-contact {
  color: rgba(255, 255, 255, 0.88);
}

.bs-seo-contact:hover {
  color: #d9eddf;
}

.bs-seo-contact i,
.bs-seo-highlight i,
.bs-seo-topbar-left > span:not(.bs-seo-divider) i {
  color: #a9d6b8;
}

.bs-seo-language {
  gap: 3px;
  padding-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.bs-seo-language a {
  min-width: 26px;
  padding: 2px 6px;
  text-align: center;
}

.bs-seo-language a.active {
  background: #fff;
  color: #0d4f35;
}

.site-header {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #e4ebe6;
  box-shadow: 0 5px 20px rgba(15, 65, 43, 0.06);
  backdrop-filter: blur(12px);
}

.nav-container {
  min-height: 78px;
  padding: 9px 0;
  flex-wrap: nowrap;
}

.logo img {
  height: 55px;
}

.main-nav ul {
  align-items: center;
  gap: 6px;
}

.main-nav ul li {
  margin-left: 18px;
}

.main-nav a {
  position: relative;
  display: block;
  padding: 10px 5px;
  color: #263a32;
  font-size: 15px;
  font-weight: 600;
}

.main-nav a:not(.btn-nav)::after {
  position: absolute;
  right: 50%;
  bottom: 3px;
  left: 50%;
  height: 2px;
  background: var(--primary-color);
  content: "";
  transition: right 180ms ease, left 180ms ease;
}

.main-nav a:not(.btn-nav):hover::after,
.main-nav a[aria-current="page"]::after {
  right: 5px;
  left: 5px;
}

.main-nav a.btn-nav {
  margin-left: 6px;
  padding: 9px 18px;
  border: 1px solid var(--primary-color);
  border-radius: 6px;
  box-shadow: 0 7px 18px rgba(24, 114, 71, 0.16);
}

.main-nav a.btn-nav:hover {
  box-shadow: 0 9px 22px rgba(13, 79, 53, 0.22);
}

.hamburger {
  width: 42px;
  height: 42px;
  border: 1px solid #dce7df;
  border-radius: 6px;
  color: var(--primary-dark);
}

/* ==============================
   2026 Homepage Banner Refresh
============================== */

.crc-banner {
  height: clamp(520px, 72vh, 650px);
  min-height: 520px;
  max-height: 650px;
  background: #173d31;
}

.banner-slide {
  height: 100%;
}

.banner-bg-img {
  border-radius: 0;
}

.banner-overlay {
  background:
    linear-gradient(90deg, rgba(5, 31, 22, 0.55) 0%, rgba(7, 39, 27, 0.36) 34%, rgba(7, 31, 23, 0.12) 62%, rgba(7, 24, 20, 0) 80%),
    linear-gradient(0deg, rgba(6, 25, 19, 0.12), transparent 38%);
}

.banner-content {
  padding-inline: 0;
}

.banner-inner {
  max-width: 690px;
  padding: 28px 30px 30px;
  border-left: 3px solid #91c99f;
  background: linear-gradient(90deg, rgba(7, 35, 26, 0.14), transparent 88%);
}

.banner-pretitle {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  color: #c6e4ce;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-shadow: none;
}

.banner-content h1,
.banner-content h2 {
  max-width: 670px;
  margin-bottom: 18px;
  font-size: clamp(36px, 4.2vw, 54px);
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.28);
}

.banner-content p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.87);
  font-size: clamp(15px, 1.45vw, 18px);
  font-weight: 400;
  line-height: 1.7;
  text-shadow: none;
}

.banner-button {
  margin-top: 24px;
  padding: 12px 20px;
  border: 1px solid #79ba8d;
  border-radius: 6px;
  background: #187247;
  box-shadow: 0 10px 24px rgba(5, 34, 24, 0.26);
  font-weight: 700;
}

.banner-button:hover {
  background: #0d4f35;
  transform: translateY(-2px);
}

.banner-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(8, 43, 31, 0.48);
  font-size: 16px;
  backdrop-filter: blur(8px);
}

.banner-controls button:hover {
  background: #187247;
}

.banner-dots {
  bottom: 24px;
  gap: 7px;
}

.banner-dots span {
  width: 25px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.42);
}

.banner-dots span.active {
  width: 40px;
  background: #a8d5b4;
}

@media (max-width: 1200px) {
  .main-nav {
    right: 5%;
    width: min(320px, 90vw);
    border: 1px solid #e0e9e3;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 18px 35px rgba(13, 55, 39, 0.16);
  }

  .main-nav ul {
    align-items: stretch;
    gap: 0;
  }

  .main-nav ul li {
    margin: 0;
  }

  .main-nav ul li a {
    padding: 14px 22px;
  }

  .main-nav a:not(.btn-nav)::after {
    display: none;
  }

  .main-nav a.btn-nav {
    margin: 10px 14px 14px;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .bs-seo-topbar-left {
    display: none;
  }

  .bs-seo-topbar-container {
    justify-content: flex-end;
  }

  .banner-inner {
    max-width: 650px;
    padding-right: 20px;
  }
}

@media (max-width: 768px) {
  .bs-seo-topbar-container {
    min-height: 38px;
    padding: 4px 0;
  }

  .bs-seo-topbar-right {
    width: 100%;
    justify-content: space-between;
  }

  .bs-seo-contact[href^="tel:"] {
    display: none;
  }

  .nav-container {
    min-height: 68px;
    padding: 8px 0;
  }

  .logo img {
    height: 48px;
  }

  .crc-banner {
    height: 510px;
    min-height: 510px;
  }

  .banner-content {
    padding-inline: 5%;
  }

  .banner-inner {
    padding: 18px 12px 20px 18px;
  }

  .banner-content h1,
  .banner-content h2 {
    font-size: clamp(29px, 8.5vw, 38px);
    line-height: 1.12;
  }

  .banner-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .banner-controls button {
    display: none;
  }

  .banner-dots {
    bottom: 18px;
  }
}

@media (max-width: 520px) {
  .bs-seo-contact[href^="mailto:"] {
    display: none;
  }

  .bs-seo-topbar-right {
    justify-content: flex-end;
  }

  .banner-pretitle {
    font-size: 10px;
    line-height: 1.5;
  }
}

/* ==============================
   Homepage Sales Contact Dock
============================== */
.contact-dock {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 120;
  display: grid;
  justify-items: end;
  gap: 10px;
  width: 272px;
  font-family: inherit;
}

.contact-dock__card {
  width: 100%;
  border: 1px solid rgba(25, 77, 55, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(10, 47, 33, 0.18);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.contact-dock__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 17px;
  color: #fff;
  background: linear-gradient(120deg, #0d4f35, #187247);
}

.contact-dock__head > span:last-child,
.contact-dock__text {
  min-width: 0;
}

.contact-dock__head strong,
.contact-dock__head small,
.contact-dock__text strong,
.contact-dock__text small {
  display: block;
}

.contact-dock__head strong {
  font-size: 14px;
  line-height: 1.3;
}

.contact-dock__head small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

.contact-dock__presence {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: #86e3aa;
  box-shadow: 0 0 0 4px rgba(134, 227, 170, 0.13);
}

.contact-dock__links {
  display: grid;
  padding: 6px;
}

.contact-dock__link {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 15px;
  align-items: center;
  gap: 10px;
  min-height: 55px;
  padding: 7px 9px;
  color: #173229;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.contact-dock__link + .contact-dock__link {
  border-top: 1px solid #edf2ee;
}

.contact-dock__link:hover,
.contact-dock__link:focus-visible {
  color: #0d4f35;
  background: #eef7f1;
  transform: translateX(-2px);
}

.contact-dock__link:focus-visible,
.contact-dock__top:focus-visible {
  outline: 3px solid rgba(24, 114, 71, 0.2);
  outline-offset: 2px;
}

.contact-dock__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #0d4f35;
  border-radius: 9px;
  background: #e8f3ec;
  font-size: 16px;
}

.contact-dock__link--whatsapp .contact-dock__icon {
  color: #fff;
  background: #20ad5a;
}

.contact-dock__link--rfq .contact-dock__icon {
  color: #fff;
  background: #187247;
}

.contact-dock__text strong {
  font-size: 13px;
  line-height: 1.3;
}

.contact-dock__text small {
  margin-top: 3px;
  color: #6b7f77;
  font-size: 10px;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-dock__arrow {
  color: #91a59c;
  font-size: 10px;
}

.contact-dock__top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: #173229;
  box-shadow: 0 10px 26px rgba(10, 47, 33, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.contact-dock__top:hover {
  background: #187247;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .banner-overlay {
    background:
      linear-gradient(90deg, rgba(5, 31, 22, 0.55) 0%, rgba(7, 39, 27, 0.36) 58%, rgba(7, 24, 20, 0.08) 100%),
      linear-gradient(0deg, rgba(6, 25, 19, 0.12), transparent 38%);
  }

  .contact-dock {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    width: 56px;
    gap: 8px;
  }

  .contact-dock__card {
    padding: 4px;
    border-radius: 14px;
  }

  .contact-dock__head,
  .contact-dock__text,
  .contact-dock__arrow {
    display: none;
  }

  .contact-dock__links {
    gap: 4px;
    padding: 0;
  }

  .contact-dock__link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 5px;
    border-radius: 10px;
    transform: none;
  }

  .contact-dock__link + .contact-dock__link {
    border-top: 0;
  }

  .contact-dock__icon {
    width: 40px;
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-dock__link,
  .contact-dock__top {
    transition: none;
  }
}
/* Keep international phone numbers readable inside Arabic RTL layouts. */
html[dir="rtl"] a[href^="tel:"],
html[dir="rtl"] [data-phone],
html[dir="rtl"] .phone-ltr {
    direction: ltr;
    unicode-bidi: isolate;
}
/* Homepage phosphate hub, buyer proof and FAQ */
.bs-phosphate-hub,.bs-buyer-process,.bs-home-faq{padding:76px 0}.bs-phosphate-hub{background:#f4f8f7;border-bottom:1px solid #dbe7e2}.bs-phosphate-hub__intro{display:grid;grid-template-columns:1.15fr .85fr;gap:56px;align-items:end;margin-bottom:32px}.bs-phosphate-hub__eyebrow,.bs-buyer-process__header>span,.bs-home-faq__intro>span{display:block;color:#177b59;font-size:.78rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase;margin-bottom:10px}.bs-phosphate-hub h2,.bs-buyer-process h2,.bs-home-faq h2{font-size:clamp(1.9rem,3vw,2.7rem);line-height:1.16;margin:0;color:#15382d}.bs-phosphate-hub__intro p,.bs-buyer-process__header p,.bs-home-faq__intro p{color:#52655f;line-height:1.72;margin:0}.bs-phosphate-hub__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}.bs-phosphate-hub__grid a{display:flex;flex-direction:column;gap:9px;padding:24px;background:#fff;border:1px solid #d6e4df;border-radius:10px;color:#183c31;text-decoration:none;transition:transform .2s,border-color .2s,box-shadow .2s}.bs-phosphate-hub__grid a:hover,.bs-phosphate-hub__grid a:focus-visible{transform:translateY(-3px);border-color:#2c936f;box-shadow:0 12px 28px rgba(22,70,54,.1)}.bs-phosphate-hub__grid span{color:#60736c;font-size:.92rem;line-height:1.55}.bs-phosphate-hub__cta{margin:28px 0 0}.bs-phosphate-hub__cta a,.bs-buyer-process__link a{font-weight:800;color:#147554}.bs-buyer-process{background:#123b30;color:#fff}.bs-buyer-process__header{max-width:850px;margin-bottom:32px}.bs-buyer-process h2{color:#fff}.bs-buyer-process__header p{color:#c9ddd6;margin-top:15px}.bs-buyer-process__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}.bs-buyer-process__grid article{padding:24px;border:1px solid rgba(255,255,255,.16);border-radius:10px;background:rgba(255,255,255,.055)}.bs-buyer-process__grid h3{font-size:1.05rem;margin:0 0 10px}.bs-buyer-process__grid p{font-size:.93rem;line-height:1.65;color:#d6e6e0;margin:0}.bs-buyer-process__link{margin:26px 0 0}.bs-buyer-process__link a{color:#8be0c0}.bs-home-faq{background:#f7f9f8}.bs-home-faq__intro{max-width:820px;margin-bottom:30px}.bs-home-faq__intro p{margin-top:14px}.bs-home-faq__list{max-width:940px}.bs-home-faq details{background:#fff;border:1px solid #dce5e1;border-radius:8px;margin:0 0 12px;padding:0 20px}.bs-home-faq summary{cursor:pointer;font-weight:750;color:#173b30;padding:19px 34px 19px 0;position:relative}.bs-home-faq summary::after{content:'+';position:absolute;right:2px;font-size:1.35rem;color:#177b59}.bs-home-faq details[open] summary::after{content:'−'}.bs-home-faq details p{color:#52655f;line-height:1.7;margin:0;padding:0 30px 20px 0}
@media (max-width:980px){.bs-phosphate-hub__intro{grid-template-columns:1fr;gap:18px}.bs-phosphate-hub__grid,.bs-buyer-process__grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:620px){.bs-phosphate-hub,.bs-buyer-process,.bs-home-faq{padding:54px 0}.bs-phosphate-hub__grid,.bs-buyer-process__grid{grid-template-columns:1fr}}

/* Bespring Industry Applications
   All selectors use the bsia- (homepage) or bsfi- (food solution page)
   namespace to prevent leakage into existing website styles. */

/* Homepage product center refinement */
.bshp-products {
  --bshp-green: #187247;
  --bshp-green-dark: #0d4f35;
  --bshp-lime: #98c9a5;
  --bshp-ink: #183027;
  --bshp-muted: #64736b;
  padding: 82px 0 90px;
  background:
    radial-gradient(circle at 93% 4%, rgba(152, 201, 165, 0.16), transparent 25rem),
    #f4f7f5;
}

.bshp-products .bs-prod__header {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(420px, 1.1fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 30px;
  text-align: left;
}

.bshp-products__eyebrow,
.bshp-company__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--bshp-green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bshp-products__eyebrow::before,
.bshp-company__eyebrow::before {
  width: 30px;
  height: 2px;
  background: var(--bshp-lime);
  content: "";
}

.bshp-products .bs-prod__title {
  grid-column: 1;
  margin: 0;
  color: var(--bshp-ink);
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -0.04em;
}

.bshp-products .bs-prod__desc {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 600px;
  margin: 0;
  padding-left: 24px;
  border-left: 1px solid #d7e1d9;
  color: var(--bshp-muted);
  font-size: 16px;
  line-height: 1.75;
}

.bshp-products .bs-prod__cats {
  justify-content: flex-start;
  gap: 8px;
  margin: 0 0 32px;
  padding: 0;
}

.bshp-products .bs-prod__cat {
  padding: 9px 14px;
  border-color: #d6e0d8;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.88);
  color: #40554a;
  font-size: 12px;
  font-weight: 650;
}

.bshp-products .bs-prod__cat:hover,
.bshp-products .bs-prod__cat:focus-visible {
  border-color: var(--bshp-green);
  background: var(--bshp-green);
  color: #fff;
}

.bshp-products .bs-prod__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  overflow: visible;
}

.bshp-products .bs-prod__card {
  display: flex;
  grid-column: auto;
  min-height: 470px;
  border: 1px solid #dce5de;
  border-radius: 10px;
  flex-direction: column;
  box-shadow: 0 10px 28px rgba(24, 61, 42, 0.055);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.bshp-products .bs-prod__card:nth-child(-n + 2) {
  grid-column: auto;
}

.bshp-products .bs-prod__card:hover {
  border-color: #bdcec1;
  box-shadow: 0 18px 38px rgba(24, 61, 42, 0.1);
  transform: translateY(-5px);
}

.bshp-products .bs-prod__img {
  height: 215px;
  background: #edf2ee;
}

.bshp-products .bs-prod__card:nth-child(-n + 2) .bs-prod__img {
  height: 215px;
}

.bshp-products .bs-prod__img img {
  border-radius: 0;
  transition: transform 500ms ease;
}

.bshp-products .bs-prod__card:hover .bs-prod__img img {
  transform: scale(1.045);
}

.bshp-products .bs-prod__body {
  display: flex;
  padding: 22px 22px 20px;
  flex: 1;
  flex-direction: column;
}

.bshp-products .bs-prod__name {
  min-height: 2.45em;
  margin: 0 0 6px;
  color: var(--bshp-ink);
  font-size: 18px;
  line-height: 1.28;
}

.bshp-products .bs-prod__name + .bs-prod__name {
  min-height: 0;
  margin-top: -7px;
}

.bshp-products .bs-prod__name span {
  color: var(--bshp-green);
  font-size: 12px;
  font-weight: 800;
}

.bshp-products .bs-prod__cas {
  margin-bottom: 12px;
  color: #89958e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.bshp-products .bs-prod__text {
  margin-bottom: 13px;
  color: var(--bshp-muted);
  font-size: 13px;
  line-height: 1.65;
  -webkit-line-clamp: 3;
}

.bshp-products .bs-prod__tags {
  margin: 0 0 18px;
}

.bshp-products .bs-prod__tags span {
  padding: 4px 8px;
  border-radius: 2px;
  background: #eef5ef;
  color: #4e6958;
  font-size: 10px;
}

.bshp-products .bs-prod__tags span:nth-child(n + 4) {
  display: none;
}

.bshp-products .bs-prod__actions {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #e5ebe6;
}

.bshp-products .bs-prod__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  flex: none;
  border-radius: 5px;
  background: #edf5f0;
  color: var(--bshp-green-dark);
  font-size: 12px;
  font-weight: 800;
  text-align: left;
}

.bshp-products .bs-prod__btn:hover {
  background: var(--bshp-green);
  color: #fff;
}

.bshp-products .bs-prod__footer {
  margin-top: 38px;
}

.bshp-products .bs-prod__more {
  padding: 13px 21px;
  border-radius: 6px;
  background: var(--bshp-green-dark);
  font-size: 13px;
  font-weight: 750;
}

.bshp-products .bs-prod__more:hover {
  background: var(--bshp-green);
}

@media (max-width: 1120px) {
  .bshp-products .bs-prod__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Homepage company introduction refinement */
.bshp-company {
  --bshp-green: #18743a;
  --bshp-green-dark: #0d3f27;
  --bshp-lime: #b8d444;
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 100%, rgba(184, 212, 68, 0.12), transparent 26rem),
    var(--bshp-green-dark);
}

.bshp-company::after {
  position: absolute;
  top: -170px;
  right: -120px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.bshp-company .bs-company-split__container {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 1200px;
  padding: 0;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  gap: 76px;
}

.bshp-company .bs-company-split__content {
  padding: 18px 0 0;
}

.bshp-company__eyebrow {
  color: #d9eb8d;
}

.bshp-company .bs-company-split__title {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.bshp-company .bs-company-split__desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.8;
}

.bshp-company .bs-company-split__stats {
  display: grid;
  margin: 36px 0 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.bshp-company .bs-company-split__stat {
  min-height: 105px;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.bshp-company .bs-company-split__number {
  color: #d7ec81;
  font-size: 27px;
}

.bshp-company .bs-company-split__label {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bshp-company__link {
  display: inline-flex;
  margin-top: 30px;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.bshp-company__link:hover {
  color: #d7ec81;
}

.bshp-company .bs-company-split__media {
  position: relative;
  min-height: 620px;
}

.bshp-company .bs-company-split__img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
  filter: saturate(0.92);
}

.bshp-company__badge {
  display: flex;
  position: absolute;
  left: -38px;
  bottom: 40px;
  min-width: 190px;
  padding: 20px 22px;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 3px;
  background: rgba(13, 63, 39, 0.93);
  color: #fff;
  backdrop-filter: blur(8px);
}

.bshp-company__badge strong {
  color: #d7ec81;
  font-size: 35px;
  line-height: 1;
}

.bshp-company__badge span {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.bsia-industries {
  --bsia-green: #18743a;
  --bsia-lime: #b7d43f;
  --bsia-ink: #173027;
  --bsia-muted: #607168;
  --bsia-line: #dbe5de;
  padding: 88px 0 96px;
  background:
    radial-gradient(circle at 7% 10%, rgba(183, 212, 63, 0.12), transparent 24rem),
    #f4f8f5;
}

.bsia-industries__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 38px;
}

.bsia-industries__eyebrow,
.bsfi-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--bsia-green, #18743a);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bsia-industries__eyebrow::before,
.bsfi-eyebrow::before {
  width: 32px;
  height: 2px;
  background: var(--bsia-lime, #b7d43f);
  content: "";
}

.bsia-industries__title {
  max-width: 650px;
  margin: 0;
  color: var(--bsia-ink);
  font-size: clamp(32px, 4vw, 50px);
  letter-spacing: -0.035em;
}

.bsia-industries__lead {
  margin: 0 0 5px;
  padding-left: 24px;
  border-left: 1px solid var(--bsia-line);
  color: var(--bsia-muted);
  font-size: 17px;
  line-height: 1.75;
}

.bsia-industries__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bsia-industries__card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 4px;
  background: #173027;
  isolation: isolate;
}

.bsia-industries__card--featured {
  grid-column: span 1;
}

.bsia-industries__image,
.bsia-industries__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.bsia-industries__image {
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
  z-index: -2;
}

.bsia-industries__shade {
  background:
    linear-gradient(180deg, rgba(8, 23, 16, 0.08) 15%, rgba(8, 23, 16, 0.9) 100%),
    linear-gradient(90deg, rgba(8, 23, 16, 0.42), transparent 70%);
  z-index: -1;
}

.bsia-industries__content {
  display: flex;
  min-height: 320px;
  padding: 25px 27px 26px;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
}

.bsia-industries__number {
  padding-bottom: 8px;
  border-bottom: 2px solid var(--bsia-lime);
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.bsia-industries__name {
  margin-top: auto;
  font-size: 24px;
  font-weight: 750;
  line-height: 1.2;
}

.bsia-industries__description {
  max-width: 440px;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.bsia-industries__link {
  margin-top: 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  opacity: 0;
  transform: translateY(6px);
  transition: 220ms ease;
}

.bsia-industries__card:hover .bsia-industries__image,
.bsia-industries__card:focus-visible .bsia-industries__image {
  transform: scale(1.055);
}

.bsia-industries__card:hover .bsia-industries__link,
.bsia-industries__card:focus-visible .bsia-industries__link {
  opacity: 1;
  transform: translateY(0);
}

.bsia-industries__card:focus-visible {
  outline: 3px solid var(--bsia-lime);
  outline-offset: 3px;
}

/* Food industry solution page */
.bsfi-page {
  --bsfi-green: #176f39;
  --bsfi-green-dark: #0e4f2b;
  --bsfi-lime: #bad63f;
  --bsfi-ink: #172b23;
  --bsfi-muted: #5f7067;
  --bsfi-cream: #f5f7f1;
  --bsfi-line: #dce5de;
  color: var(--bsfi-ink);
  background: #fff;
}

.bsfi-page__container {
  width: min(90%, 1200px);
  margin-inline: auto;
}

.bsfi-breadcrumb {
  padding: 14px 0;
  border-bottom: 1px solid #e4e9e5;
  background: #fff;
  color: #6b776f;
  font-size: 13px;
}

.bsfi-breadcrumb a:hover {
  color: var(--bsfi-green);
}

.bsfi-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #10261d;
  color: #fff;
}

.bsfi-hero__image,
.bsfi-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.bsfi-hero__image {
  object-fit: cover;
}

.bsfi-hero__overlay {
  background:
    linear-gradient(90deg, rgba(9, 31, 21, 0.95) 0%, rgba(9, 31, 21, 0.81) 45%, rgba(9, 31, 21, 0.2) 76%),
    linear-gradient(0deg, rgba(9, 31, 21, 0.45), transparent 55%);
}

.bsfi-hero__inner {
  position: relative;
  display: flex;
  min-height: 620px;
  align-items: center;
}

.bsfi-hero__content {
  width: min(650px, 65%);
  padding: 80px 0;
}

.bsfi-hero .bsfi-eyebrow {
  color: #d8ec8b;
}

.bsfi-hero__title {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.bsfi-hero__text {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.75;
}

.bsfi-button {
  display: inline-flex;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid var(--bsfi-green);
  border-radius: 3px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--bsfi-green);
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  transition: 180ms ease;
}

.bsfi-button:hover,
.bsfi-button:focus-visible {
  border-color: var(--bsfi-green-dark);
  background: var(--bsfi-green-dark);
  transform: translateY(-2px);
}

.bsfi-button--light {
  border-color: #fff;
  background: #fff;
  color: var(--bsfi-green-dark);
}

.bsfi-button--light:hover,
.bsfi-button--light:focus-visible {
  border-color: var(--bsfi-lime);
  background: var(--bsfi-lime);
  color: var(--bsfi-green-dark);
}

.bsfi-hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.bsfi-trust {
  position: relative;
  z-index: 2;
  margin-top: -38px;
}

.bsfi-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(18, 54, 37, 0.13);
}

.bsfi-trust__item {
  padding: 25px 24px;
  border-right: 1px solid var(--bsfi-line);
}

.bsfi-trust__item:last-child {
  border-right: 0;
}

.bsfi-trust__value {
  display: block;
  margin-bottom: 3px;
  color: var(--bsfi-green);
  font-size: 18px;
  font-weight: 800;
}

.bsfi-trust__label {
  color: var(--bsfi-muted);
  font-size: 13px;
}

.bsfi-section {
  padding: 96px 0;
}

.bsfi-section--soft {
  background: var(--bsfi-cream);
}

.bsfi-section--dark {
  background:
    radial-gradient(circle at 90% 10%, rgba(186, 214, 63, 0.13), transparent 26rem),
    var(--bsfi-green-dark);
  color: #fff;
}

.bsfi-section__header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.65fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 42px;
}

.bsfi-section__title {
  max-width: 720px;
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.035em;
}

.bsfi-section__intro {
  margin: 0;
  color: var(--bsfi-muted);
  font-size: 16px;
  line-height: 1.75;
}

.bsfi-application-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.bsfi-application {
  display: block;
  color: inherit;
  text-decoration: none;
  min-height: 225px;
  padding: 28px;
  border: 1px solid var(--bsfi-line);
  border-radius: 4px;
  background: #fff;
  transition: 180ms ease;
}

.bsfi-application:hover {
  border-color: #b8c9bc;
  box-shadow: 0 14px 34px rgba(27, 73, 48, 0.08);
  transform: translateY(-3px);
}

.bsfi-application__index {
  color: var(--bsfi-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.bsfi-application__title {
  margin: 38px 0 10px;
  font-size: 21px;
}

.bsfi-application__text {
  margin: 0;
  color: var(--bsfi-muted);
  font-size: 14px;
  line-height: 1.7;
}

.bsfi-function-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.bsfi-function {
  min-height: 250px;
  padding: 30px;
  background: var(--bsfi-green-dark);
}

.bsfi-function__mark {
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 46px;
  background: var(--bsfi-lime);
}

.bsfi-function__title {
  margin-bottom: 10px;
  color: #fff;
  font-size: 20px;
}

.bsfi-function__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
  line-height: 1.7;
}

.bsfi-page .bsfi-section--dark .bsfi-eyebrow {
  color: #d9ec8f;
}

.bsfi-page .bsfi-section--dark .bsfi-section__intro {
  color: rgba(255, 255, 255, 0.68);
}

.bsfi-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bsfi-product {
  display: flex;
  min-height: 265px;
  padding: 27px;
  border: 1px solid var(--bsfi-line);
  border-radius: 4px;
  flex-direction: column;
  background: #fff;
}

.bsfi-product__type {
  color: var(--bsfi-green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bsfi-product__name {
  margin: 16px 0 9px;
  font-size: 21px;
}

.bsfi-product__use {
  margin: 0;
  color: var(--bsfi-muted);
  font-size: 14px;
  line-height: 1.7;
}

.bsfi-product__link {
  margin-top: auto;
  padding-top: 20px;
  color: var(--bsfi-green);
  font-size: 13px;
  font-weight: 800;
}

.bsfi-product__link:hover {
  color: var(--bsfi-green-dark);
}

.bsfi-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: bsfi-process;
}

.bsfi-process__step {
  position: relative;
  padding: 0 30px 0 0;
  counter-increment: bsfi-process;
}

.bsfi-process__step:not(:last-child)::after {
  position: absolute;
  top: 17px;
  right: 20px;
  width: calc(100% - 75px);
  height: 1px;
  background: var(--bsfi-line);
  content: "";
  transform: translateX(100%);
}

.bsfi-process__number {
  display: inline-grid;
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  margin-bottom: 24px;
  border-radius: 50%;
  place-items: center;
  background: var(--bsfi-green);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.bsfi-process__title {
  margin-bottom: 8px;
  font-size: 18px;
}

.bsfi-process__text {
  margin: 0;
  color: var(--bsfi-muted);
  font-size: 13px;
  line-height: 1.65;
}

.bsfi-cta {
  padding: 0 0 96px;
  background: var(--bsfi-cream);
}

.bsfi-cta__panel {
  display: grid;
  padding: 58px 64px;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: center;
  border-radius: 5px;
  background: var(--bsfi-green);
  color: #fff;
}

.bsfi-cta__title {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 40px);
}

.bsfi-cta__text {
  max-width: 660px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 960px) {
  .bshp-products .bs-prod__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bshp-products .bs-prod__card,
  .bshp-products .bs-prod__card:nth-child(-n + 2) {
    grid-column: auto;
  }

  .bshp-products .bs-prod__card:nth-child(-n + 2) .bs-prod__img {
    height: 215px;
  }

  .bshp-company .bs-company-split__container {
    padding: 0 5%;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .bshp-company .bs-company-split__media {
    min-height: 500px;
  }

  .bshp-company__badge {
    left: 24px;
  }

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

  .bsia-industries__card--featured {
    grid-column: span 1;
  }

  .bsfi-trust__grid,
  .bsfi-function-grid,
  .bsfi-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bsfi-trust__item:nth-child(2) {
    border-right: 0;
  }

  .bsfi-trust__item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--bsfi-line);
  }

  .bsfi-application-grid,
  .bsfi-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bsfi-process {
    gap: 35px 24px;
  }

  .bsfi-process__step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 700px) {
  .bshp-products {
    padding: 66px 0 72px;
  }

  .bshp-products .bs-prod__header {
    display: block;
    margin-bottom: 26px;
  }

  .bshp-products .bs-prod__title {
    margin-bottom: 16px;
  }

  .bshp-products .bs-prod__desc {
    padding-left: 0;
    border-left: 0;
  }

  .bshp-products .bs-prod__cats {
    justify-content: flex-start;
    flex-wrap: nowrap;
    margin-right: -5%;
    padding-right: 5%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .bshp-products .bs-prod__cats::-webkit-scrollbar {
    display: none;
  }

  .bshp-products .bs-prod__grid {
    grid-template-columns: 1fr;
  }

  .bshp-products .bs-prod__card {
    min-height: 0;
  }

  .bshp-company {
    padding: 70px 0;
  }

  .bshp-company .bs-company-split__container {
    padding: 0 5%;
  }

  .bshp-company .bs-company-split__media {
    min-height: 380px;
  }

  .bshp-company__badge {
    left: 18px;
    bottom: 18px;
  }

  .bsia-industries {
    padding: 64px 0;
  }

  .bsia-industries__intro,
  .bsfi-section__header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bsia-industries__lead {
    padding-left: 0;
    border-left: 0;
  }

  .bsia-industries__grid,
  .bsfi-application-grid,
  .bsfi-products,
  .bsfi-function-grid,
  .bsfi-process {
    grid-template-columns: 1fr;
  }

  .bsia-industries__card--featured {
    grid-column: auto;
  }

  .bsia-industries__card,
  .bsia-industries__content {
    min-height: 290px;
  }

  .bsia-industries__link {
    opacity: 1;
    transform: none;
  }

  .bsfi-hero,
  .bsfi-hero__inner {
    min-height: 570px;
  }

  .bsfi-hero__overlay {
    background: rgba(9, 31, 21, 0.8);
  }

  .bsfi-hero__content {
    width: 100%;
    padding: 70px 0;
  }

  .bsfi-hero__title {
    font-size: 44px;
  }

  .bsfi-trust {
    margin-top: 0;
  }

  .bsfi-trust__grid {
    grid-template-columns: 1fr;
    box-shadow: none;
  }

  .bsfi-trust__item,
  .bsfi-trust__item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--bsfi-line);
  }

  .bsfi-trust__item:last-child {
    border-bottom: 0;
  }

  .bsfi-section {
    padding: 68px 0;
  }

  .bsfi-section__header {
    margin-bottom: 30px;
  }

  .bsfi-cta {
    padding-bottom: 68px;
  }

  .bsfi-cta__panel {
    padding: 38px 28px;
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bsia-industries__image,
  .bsia-industries__link,
  .bsfi-application,
  .bsfi-button {
    transition: none;
  }
}

/* Homecare & industrial cleaning solution page */
.bsic-page {
  --bsic-green: #176f39;
  --bsic-green-dark: #0e4f2b;
  --bsic-lime: #bad63f;
  --bsic-ink: #172b23;
  --bsic-muted: #5f7067;
  --bsic-line: #dce5de;
}

.bsic-hero .bsfi-hero__image {
  object-position: 62% center;
}

.bsic-hero .bsfi-hero__overlay {
  background:
    linear-gradient(90deg, rgba(9, 31, 21, 0.96) 0%, rgba(9, 31, 21, 0.82) 48%, rgba(9, 31, 21, 0.18) 82%),
    linear-gradient(0deg, rgba(9, 31, 21, 0.4), transparent 58%);
}

.bsic-hero .bsfi-hero__content {
  width: min(720px, 68%);
}

.bsic-hero .bsfi-hero__title {
  max-width: 700px;
  font-size: clamp(40px, 5.4vw, 66px);
}

.bsic-function-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.bsic-function-grid .bsfi-function {
  grid-column: span 2;
}

.bsic-function-grid .bsfi-function:nth-child(n + 4) {
  grid-column: span 3;
}

.bsic-family-map {
  border-top: 1px solid var(--bsic-line);
}

.bsic-family {
  display: grid;
  padding: 30px 0;
  grid-template-columns: minmax(300px, 0.9fr) minmax(400px, 1.1fr);
  gap: 55px;
  align-items: start;
  border-bottom: 1px solid var(--bsic-line);
}

.bsic-family__heading {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
}

.bsic-family__number {
  padding-top: 3px;
  color: var(--bsic-green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.bsic-family__heading h3 {
  margin: 0 0 8px;
  color: var(--bsic-ink);
  font-size: 20px;
}

.bsic-family__heading p {
  margin: 0;
  color: var(--bsic-muted);
  font-size: 13px;
  line-height: 1.65;
}

.bsic-family__materials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bsic-family__materials span {
  padding: 7px 10px;
  border: 1px solid #d8e3da;
  border-radius: 2px;
  background: #fff;
  color: #4e6256;
  font-size: 11px;
  line-height: 1.35;
}

.bsic-family-map__footer {
  display: flex;
  padding-top: 27px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.bsic-family-map__footer p {
  margin: 0;
  color: var(--bsic-muted);
  font-size: 13px;
}

.bsic-family-map__footer a {
  color: var(--bsic-green);
  font-size: 13px;
  font-weight: 800;
}

.bsic-family-map__footer a:hover {
  color: var(--bsic-green-dark);
}

.bsic-brief {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  gap: 76px;
  align-items: stretch;
}

.bsic-brief__content .bsfi-section__intro {
  max-width: 660px;
  margin-top: 18px;
}

.bsic-brief__list {
  display: grid;
  margin-top: 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--bsic-line);
  border-left: 1px solid var(--bsic-line);
}

.bsic-brief__list li {
  min-height: 112px;
  padding: 20px;
  border-right: 1px solid var(--bsic-line);
  border-bottom: 1px solid var(--bsic-line);
  color: var(--bsic-muted);
  font-size: 13px;
  line-height: 1.65;
}

.bsic-brief__list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--bsic-ink);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bsic-brief__panel {
  display: flex;
  padding: 44px;
  flex-direction: column;
  justify-content: center;
  border-radius: 4px;
  background:
    radial-gradient(circle at 100% 0, rgba(186, 214, 63, 0.15), transparent 20rem),
    var(--bsic-green-dark);
  color: #fff;
}

.bsic-brief__panel-label {
  margin-bottom: 34px;
  color: #d8ec8b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.bsic-brief__panel blockquote {
  margin: 0;
  color: #fff;
  font-size: clamp(25px, 3vw, 35px);
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.bsic-brief__panel p {
  margin: 25px 0 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.7;
}

.bsic-brief__panel .bsfi-button {
  align-self: flex-start;
}

.bsic-faq {
  border-top: 1px solid #edf1ee;
}

.bsic-faq__list {
  border-top: 1px solid var(--bsic-line);
}

.bsic-faq__item {
  border-bottom: 1px solid var(--bsic-line);
}

.bsic-faq__item summary {
  position: relative;
  padding: 25px 52px 25px 0;
  color: var(--bsic-ink);
  cursor: pointer;
  font-size: 17px;
  font-weight: 750;
  list-style: none;
}

.bsic-faq__item summary::-webkit-details-marker {
  display: none;
}

.bsic-faq__item summary::after {
  position: absolute;
  top: 50%;
  right: 7px;
  color: var(--bsic-green);
  content: "+";
  font-size: 24px;
  font-weight: 400;
  transform: translateY(-50%);
}

.bsic-faq__item[open] summary::after {
  content: "−";
}

.bsic-faq__item p {
  max-width: 900px;
  margin: -4px 0 25px;
  color: var(--bsic-muted);
  font-size: 14px;
  line-height: 1.75;
}

@media (max-width: 960px) {
  .bsic-hero .bsfi-hero__content {
    width: min(720px, 78%);
  }

  .bsic-family {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .bsic-brief {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 700px) {
  .bsic-hero .bsfi-hero__content {
    width: 100%;
  }

  .bsic-hero .bsfi-hero__title {
    font-size: 40px;
  }

  .bsic-function-grid {
    grid-template-columns: 1fr;
  }

  .bsic-function-grid .bsfi-function,
  .bsic-function-grid .bsfi-function:nth-child(n + 4) {
    grid-column: auto;
  }

  .bsic-family {
    padding: 25px 0;
  }

  .bsic-family__heading {
    grid-template-columns: 34px 1fr;
    gap: 10px;
  }

  .bsic-family-map__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .bsic-brief__list {
    grid-template-columns: 1fr;
  }

  .bsic-brief__list li {
    min-height: 0;
  }

  .bsic-brief__panel {
    padding: 35px 27px;
  }

  .bsic-faq__item summary {
    font-size: 15px;
  }
}

/* Expanded food ingredient solution content */
.bsfi-overview {
  padding-top: 112px;
}

.bsfi-overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 0.8fr);
  gap: 90px;
}

.bsfi-overview__answer {
  padding: 7px 0 7px 28px;
  border-left: 1px solid var(--bsfi-line);
}

.bsfi-overview__answer p {
  color: var(--bsfi-muted);
  font-size: 16px;
  line-height: 1.8;
}

.bsfi-overview__link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--bsfi-green);
  font-size: 13px;
  font-weight: 800;
}

.bsfi-overview__link:hover {
  color: var(--bsfi-green-dark);
}

.bsfi-family-map {
  border-top: 1px solid var(--bsfi-line);
}

.bsfi-family {
  display: grid;
  padding: 30px 0;
  grid-template-columns: minmax(300px, 0.86fr) minmax(400px, 1.14fr);
  gap: 55px;
  align-items: start;
  border-bottom: 1px solid var(--bsfi-line);
}

.bsfi-family__heading {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
}

.bsfi-family__number {
  padding-top: 3px;
  color: var(--bsfi-green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.bsfi-family__heading h3 {
  margin: 0 0 8px;
  color: var(--bsfi-ink);
  font-size: 20px;
}

.bsfi-family__heading p {
  margin: 0;
  color: var(--bsfi-muted);
  font-size: 13px;
  line-height: 1.65;
}

.bsfi-family__materials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bsfi-family__materials span {
  padding: 7px 10px;
  border: 1px solid #d8e3da;
  border-radius: 2px;
  background: #fff;
  color: #4e6256;
  font-size: 11px;
  line-height: 1.35;
}

.bsfi-family-map__footer {
  display: flex;
  padding-top: 27px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.bsfi-family-map__footer p {
  margin: 0;
  color: var(--bsfi-muted);
  font-size: 13px;
}

.bsfi-family-map__footer a {
  color: var(--bsfi-green);
  font-size: 13px;
  font-weight: 800;
}

.bsfi-brief {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  gap: 76px;
  align-items: stretch;
}

.bsfi-brief__content .bsfi-section__intro {
  max-width: 660px;
  margin-top: 18px;
}

.bsfi-brief__list {
  display: grid;
  margin-top: 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--bsfi-line);
  border-left: 1px solid var(--bsfi-line);
}

.bsfi-brief__list li {
  min-height: 112px;
  padding: 20px;
  border-right: 1px solid var(--bsfi-line);
  border-bottom: 1px solid var(--bsfi-line);
  color: var(--bsfi-muted);
  font-size: 13px;
  line-height: 1.65;
}

.bsfi-brief__list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--bsfi-ink);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bsfi-brief__panel {
  display: flex;
  padding: 44px;
  flex-direction: column;
  justify-content: center;
  border-radius: 4px;
  background:
    radial-gradient(circle at 100% 0, rgba(186, 214, 63, 0.15), transparent 20rem),
    var(--bsfi-green-dark);
  color: #fff;
}

.bsfi-brief__panel-label {
  margin-bottom: 34px;
  color: #d8ec8b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.bsfi-brief__panel blockquote {
  margin: 0;
  color: #fff;
  font-size: clamp(25px, 3vw, 35px);
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.bsfi-brief__panel p {
  margin: 25px 0 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.7;
}

.bsfi-brief__panel .bsfi-button {
  align-self: flex-start;
}

.bsfi-food-faq {
  border-top: 1px solid #edf1ee;
}

.bsfi-food-faq__list {
  border-top: 1px solid var(--bsfi-line);
}

.bsfi-food-faq__item {
  border-bottom: 1px solid var(--bsfi-line);
}

.bsfi-food-faq__item summary {
  position: relative;
  padding: 25px 52px 25px 0;
  color: var(--bsfi-ink);
  cursor: pointer;
  font-size: 17px;
  font-weight: 750;
  list-style: none;
}

.bsfi-food-faq__item summary::-webkit-details-marker {
  display: none;
}

.bsfi-food-faq__item summary::after {
  position: absolute;
  top: 50%;
  right: 7px;
  color: var(--bsfi-green);
  content: "+";
  font-size: 24px;
  font-weight: 400;
  transform: translateY(-50%);
}

.bsfi-food-faq__item[open] summary::after {
  content: "−";
}

.bsfi-food-faq__item p {
  max-width: 900px;
  margin: -4px 0 25px;
  color: var(--bsfi-muted);
  font-size: 14px;
  line-height: 1.75;
}

@media (max-width: 960px) {
  .bsfi-overview__grid,
  .bsfi-brief {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .bsfi-family {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 700px) {
  .bsfi-overview {
    padding-top: 70px;
  }

  .bsfi-overview__grid {
    gap: 20px;
  }

  .bsfi-overview__answer {
    padding-left: 0;
    border-left: 0;
  }

  .bsfi-family {
    padding: 25px 0;
  }

  .bsfi-family__heading {
    grid-template-columns: 34px 1fr;
    gap: 10px;
  }

  .bsfi-family-map__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .bsfi-brief__list {
    grid-template-columns: 1fr;
  }

  .bsfi-brief__list li {
    min-height: 0;
  }

  .bsfi-brief__panel {
    padding: 35px 27px;
  }

  .bsfi-food-faq__item summary {
    font-size: 15px;
  }
}

/* Agricultural fertilizer solution page */
.bsag-page {
  --bsag-green: #176f39;
  --bsag-green-dark: #0e4f2b;
  --bsag-lime: #bad63f;
  --bsag-ink: #172b23;
  --bsag-muted: #5f7067;
  --bsag-line: #dce5de;
}

.bsag-hero .bsfi-hero__image {
  object-position: 66% center;
}

.bsag-hero .bsfi-hero__overlay {
  background:
    linear-gradient(90deg, rgba(9, 31, 21, 0.96) 0%, rgba(9, 31, 21, 0.8) 48%, rgba(9, 31, 21, 0.12) 82%),
    linear-gradient(0deg, rgba(9, 31, 21, 0.42), transparent 58%);
}

.bsag-hero .bsfi-hero__content {
  width: min(700px, 68%);
}

.bsag-hero .bsfi-hero__title {
  max-width: 690px;
  font-size: clamp(40px, 5.4vw, 66px);
}

.bsag-function-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.bsag-function-grid .bsfi-function {
  grid-column: span 2;
}

.bsag-function-grid .bsfi-function:nth-child(n + 4) {
  grid-column: span 3;
}

.bsag-pathway-grid {
  border-top: 1px solid var(--bsag-line);
}

.bsag-pathway {
  display: grid;
  min-height: 160px;
  padding: 28px 0;
  grid-template-columns: 185px minmax(0, 1fr) 280px;
  grid-template-rows: auto 1fr;
  gap: 8px 34px;
  align-items: start;
  border-bottom: 1px solid var(--bsag-line);
}

.bsag-pathway:hover {
  background: rgba(255, 255, 255, 0.45);
}

.bsag-pathway__code {
  grid-column: 1;
  grid-row: 1 / span 2;
  padding-top: 5px;
  color: var(--bsag-green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.bsag-pathway h3 {
  grid-column: 2;
  margin: 0;
  color: var(--bsag-ink);
  font-size: 21px;
  line-height: 1.3;
}

.bsag-pathway h3 span {
  color: var(--bsag-green);
  font-size: 13px;
}

.bsag-pathway p {
  grid-column: 2;
  margin: 0;
  color: var(--bsag-muted);
  font-size: 13px;
  line-height: 1.7;
}

.bsag-pathway__prompt {
  grid-column: 3;
  grid-row: 1 / span 2;
  margin: 0;
  padding: 4px 0 4px 24px;
  border-left: 1px solid var(--bsag-line);
  color: #6c7a72;
  font-size: 11px;
  line-height: 1.55;
}

.bsag-pathway-grid__footer {
  display: flex;
  margin-top: 28px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.bsag-pathway-grid__footer p {
  margin: 0;
  color: var(--bsag-muted);
  font-size: 13px;
}

.bsag-pathway-grid__footer a {
  color: var(--bsag-green);
  font-size: 13px;
  font-weight: 800;
}

.bsag-pathway-grid__footer a:hover {
  color: var(--bsag-green-dark);
}

.bsag-brief {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  gap: 76px;
  align-items: stretch;
}

.bsag-brief__content .bsfi-section__intro {
  max-width: 660px;
  margin-top: 18px;
}

.bsag-brief__list {
  display: grid;
  margin-top: 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--bsag-line);
  border-left: 1px solid var(--bsag-line);
}

.bsag-brief__list li {
  min-height: 112px;
  padding: 20px;
  border-right: 1px solid var(--bsag-line);
  border-bottom: 1px solid var(--bsag-line);
  color: var(--bsag-muted);
  font-size: 13px;
  line-height: 1.65;
}

.bsag-brief__list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--bsag-ink);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bsag-brief__panel {
  display: flex;
  padding: 44px;
  flex-direction: column;
  justify-content: center;
  border-radius: 4px;
  background:
    radial-gradient(circle at 100% 0, rgba(186, 214, 63, 0.15), transparent 20rem),
    var(--bsag-green-dark);
  color: #fff;
}

.bsag-brief__panel-label {
  margin-bottom: 34px;
  color: #d8ec8b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.bsag-brief__panel blockquote {
  margin: 0;
  color: #fff;
  font-size: clamp(25px, 3vw, 35px);
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.bsag-brief__panel p {
  margin: 25px 0 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.7;
}

.bsag-brief__panel .bsfi-button {
  align-self: flex-start;
}

.bsag-faq {
  border-top: 1px solid #edf1ee;
}

.bsag-faq__list {
  border-top: 1px solid var(--bsag-line);
}

.bsag-faq__item {
  border-bottom: 1px solid var(--bsag-line);
}

.bsag-faq__item summary {
  position: relative;
  padding: 25px 52px 25px 0;
  color: var(--bsag-ink);
  cursor: pointer;
  font-size: 17px;
  font-weight: 750;
  list-style: none;
}

.bsag-faq__item summary::-webkit-details-marker {
  display: none;
}

.bsag-faq__item summary::after {
  position: absolute;
  top: 50%;
  right: 7px;
  color: var(--bsag-green);
  content: "+";
  font-size: 24px;
  font-weight: 400;
  transform: translateY(-50%);
}

.bsag-faq__item[open] summary::after {
  content: "−";
}

.bsag-faq__item p {
  max-width: 900px;
  margin: -4px 0 25px;
  color: var(--bsag-muted);
  font-size: 14px;
  line-height: 1.75;
}

@media (max-width: 960px) {
  .bsag-hero .bsfi-hero__content {
    width: min(700px, 78%);
  }

  .bsag-pathway {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .bsag-pathway__prompt {
    grid-column: 2;
    grid-row: 3;
    padding: 12px 0 0;
    border-top: 1px solid var(--bsag-line);
    border-left: 0;
  }

  .bsag-brief {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 700px) {
  .bsag-hero .bsfi-hero__content {
    width: 100%;
  }

  .bsag-hero .bsfi-hero__title {
    font-size: 40px;
  }

  .bsag-function-grid {
    grid-template-columns: 1fr;
  }

  .bsag-function-grid .bsfi-function,
  .bsag-function-grid .bsfi-function:nth-child(n + 4) {
    grid-column: auto;
  }

  .bsag-pathway {
    display: block;
    min-height: 0;
  }

  .bsag-pathway__code {
    display: block;
    margin-bottom: 14px;
    padding-top: 0;
  }

  .bsag-pathway h3 {
    margin-bottom: 10px;
  }

  .bsag-pathway__prompt {
    margin-top: 16px;
  }

  .bsag-pathway-grid__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .bsag-brief__list {
    grid-template-columns: 1fr;
  }

  .bsag-brief__list li {
    min-height: 0;
  }

  .bsag-brief__panel {
    padding: 35px 27px;
  }

  .bsag-faq__item summary {
    font-size: 15px;
  }
}

/* Mining & mineral processing solution page */
.bsmn-page {
  --bsmn-green: #176f39;
  --bsmn-green-dark: #0e4f2b;
  --bsmn-lime: #bad63f;
  --bsmn-ink: #172b23;
  --bsmn-muted: #5f7067;
  --bsmn-line: #dce5de;
}

.bsmn-hero .bsfi-hero__image {
  left: auto;
  width: 55%;
  object-position: center;
  filter: saturate(0.88) contrast(1.03) brightness(1.08);
}

.bsmn-hero .bsfi-hero__overlay {
  background:
    linear-gradient(90deg, rgba(8, 28, 19, 1) 0%, rgba(8, 28, 19, 0.96) 43%, rgba(8, 28, 19, 0.28) 76%, rgba(8, 28, 19, 0.08) 100%),
    linear-gradient(0deg, rgba(8, 28, 19, 0.42), transparent 58%);
}

.bsmn-hero .bsfi-hero__content {
  width: min(735px, 68%);
}

.bsmn-hero .bsfi-hero__title {
  max-width: 720px;
  font-size: clamp(40px, 5.4vw, 66px);
}

.bsmn-stage-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.bsmn-stage {
  display: block;
  color: inherit;
  text-decoration: none;
  min-height: 250px;
  padding: 29px;
  grid-column: span 2;
  border: 1px solid var(--bsmn-line);
  border-radius: 4px;
  background: #fff;
  transition: 180ms ease;
}

.bsmn-stage:nth-child(n + 4) {
  grid-column: span 3;
}

.bsmn-stage:hover {
  border-color: #b8c9bc;
  box-shadow: 0 14px 34px rgba(27, 73, 48, 0.08);
  transform: translateY(-3px);
}

.bsmn-stage__index {
  color: var(--bsmn-green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.bsmn-stage h3 {
  margin: 52px 0 11px;
  color: var(--bsmn-ink);
  font-size: 21px;
}

.bsmn-stage p {
  margin: 0;
  color: var(--bsmn-muted);
  font-size: 13px;
  line-height: 1.7;
}

.bsmn-function-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.bsmn-function-grid .bsfi-function {
  grid-column: span 2;
}

.bsmn-function-grid .bsfi-function:nth-child(n + 4) {
  grid-column: span 3;
}

.bsmn-flow-map {
  border-top: 1px solid var(--bsmn-line);
}

.bsmn-flow {
  display: grid;
  padding: 32px 0;
  grid-template-columns: minmax(310px, 0.85fr) minmax(450px, 1.15fr);
  gap: 55px;
  align-items: start;
  border-bottom: 1px solid var(--bsmn-line);
}

.bsmn-flow__heading {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
}

.bsmn-flow__number {
  padding-top: 3px;
  color: var(--bsmn-green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.bsmn-flow__heading h3 {
  margin: 0 0 8px;
  color: var(--bsmn-ink);
  font-size: 21px;
}

.bsmn-flow__heading p {
  margin: 0;
  color: var(--bsmn-muted);
  font-size: 13px;
  line-height: 1.65;
}

.bsmn-flow__materials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bsmn-flow__materials span {
  padding: 7px 10px;
  border: 1px solid #d8e3da;
  border-radius: 2px;
  background: #fff;
  color: #4e6256;
  font-size: 11px;
  line-height: 1.35;
}

.bsmn-flow-map__footer {
  display: flex;
  padding-top: 27px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.bsmn-flow-map__footer p {
  margin: 0;
  color: var(--bsmn-muted);
  font-size: 13px;
}

.bsmn-flow-map__footer a {
  color: var(--bsmn-green);
  font-size: 13px;
  font-weight: 800;
}

.bsmn-flow-map__footer a:hover {
  color: var(--bsmn-green-dark);
}

.bsmn-brief {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  gap: 76px;
  align-items: stretch;
}

.bsmn-brief__content .bsfi-section__intro {
  max-width: 660px;
  margin-top: 18px;
}

.bsmn-brief__list {
  display: grid;
  margin-top: 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--bsmn-line);
  border-left: 1px solid var(--bsmn-line);
}

.bsmn-brief__list li {
  min-height: 112px;
  padding: 20px;
  border-right: 1px solid var(--bsmn-line);
  border-bottom: 1px solid var(--bsmn-line);
  color: var(--bsmn-muted);
  font-size: 13px;
  line-height: 1.65;
}

.bsmn-brief__list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--bsmn-ink);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bsmn-brief__panel {
  display: flex;
  padding: 44px;
  flex-direction: column;
  justify-content: center;
  border-radius: 4px;
  background:
    radial-gradient(circle at 100% 0, rgba(186, 214, 63, 0.15), transparent 20rem),
    var(--bsmn-green-dark);
  color: #fff;
}

.bsmn-brief__panel-label {
  margin-bottom: 34px;
  color: #d8ec8b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.bsmn-brief__panel blockquote {
  margin: 0;
  color: #fff;
  font-size: clamp(25px, 3vw, 35px);
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.bsmn-brief__panel p {
  margin: 25px 0 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.7;
}

.bsmn-brief__panel .bsfi-button {
  align-self: flex-start;
}

.bsmn-faq {
  border-top: 1px solid #edf1ee;
}

.bsmn-faq__list {
  border-top: 1px solid var(--bsmn-line);
}

.bsmn-faq__item {
  border-bottom: 1px solid var(--bsmn-line);
}

.bsmn-faq__item summary {
  position: relative;
  padding: 25px 52px 25px 0;
  color: var(--bsmn-ink);
  cursor: pointer;
  font-size: 17px;
  font-weight: 750;
  list-style: none;
}

.bsmn-faq__item summary::-webkit-details-marker {
  display: none;
}

.bsmn-faq__item summary::after {
  position: absolute;
  top: 50%;
  right: 7px;
  color: var(--bsmn-green);
  content: "+";
  font-size: 24px;
  font-weight: 400;
  transform: translateY(-50%);
}

.bsmn-faq__item[open] summary::after {
  content: "−";
}

.bsmn-faq__item p {
  max-width: 900px;
  margin: -4px 0 25px;
  color: var(--bsmn-muted);
  font-size: 14px;
  line-height: 1.75;
}

@media (max-width: 960px) {
  .bsmn-hero .bsfi-hero__content {
    width: min(735px, 78%);
  }

  .bsmn-flow {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .bsmn-brief {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 700px) {
  .bsmn-hero .bsfi-hero__image {
    left: 0;
    width: 100%;
  }

  .bsmn-hero .bsfi-hero__content {
    width: 100%;
  }

  .bsmn-hero .bsfi-hero__title {
    font-size: 40px;
  }

  .bsmn-stage-grid,
  .bsmn-function-grid {
    grid-template-columns: 1fr;
  }

  .bsmn-stage,
  .bsmn-stage:nth-child(n + 4),
  .bsmn-function-grid .bsfi-function,
  .bsmn-function-grid .bsfi-function:nth-child(n + 4) {
    grid-column: auto;
  }

  .bsmn-flow {
    padding: 25px 0;
  }

  .bsmn-flow__heading {
    grid-template-columns: 34px 1fr;
    gap: 10px;
  }

  .bsmn-flow-map__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .bsmn-brief__list {
    grid-template-columns: 1fr;
  }

  .bsmn-brief__list li {
    min-height: 0;
  }

  .bsmn-brief__panel {
    padding: 35px 27px;
  }

  .bsmn-faq__item summary {
    font-size: 15px;
  }
}

/* Water treatment solution page */
.bswt-page {
  --bswt-green: #176f39;
  --bswt-green-dark: #0e4f2b;
  --bswt-lime: #bad63f;
  --bswt-blue: #3aa8ca;
  --bswt-ink: #172b23;
  --bswt-muted: #5f7067;
  --bswt-line: #dce5de;
}

.bswt-hero .bsfi-hero__image {
  object-position: center;
  filter: saturate(0.92);
}

.bswt-hero .bsfi-hero__overlay {
  background:
    linear-gradient(90deg, rgba(7, 37, 27, 0.96) 0%, rgba(7, 37, 27, 0.82) 48%, rgba(7, 37, 27, 0.18) 82%),
    linear-gradient(0deg, rgba(7, 37, 27, 0.38), transparent 58%);
}

.bswt-hero .bsfi-hero__content {
  width: min(700px, 67%);
}

.bswt-pathways {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.bswt-pathway {
  display: flex;
  min-height: 380px;
  padding: 34px;
  flex-direction: column;
  background: var(--bswt-green-dark);
}

.bswt-pathway__index {
  display: inline-flex;
  width: 42px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--bswt-lime);
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.bswt-pathway h3 {
  margin: 56px 0 13px;
  color: #fff;
  font-size: 23px;
}

.bswt-pathway p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.75;
}

.bswt-pathway strong {
  margin-top: auto;
  color: #d9ec8f;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bswt-pathway strong + span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.55;
}

.bswt-system-map {
  border-top: 1px solid var(--bswt-line);
}

.bswt-system {
  display: grid;
  padding: 35px 0;
  grid-template-columns: minmax(330px, 0.88fr) minmax(420px, 1.12fr);
  gap: 58px;
  border-bottom: 1px solid var(--bswt-line);
}

.bswt-system__heading {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
}

.bswt-system__number {
  padding-top: 4px;
  color: var(--bswt-green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.bswt-system__heading h3 {
  margin: 0 0 8px;
  color: var(--bswt-ink);
  font-size: 21px;
}

.bswt-system__heading p {
  margin: 0;
  color: var(--bswt-muted);
  font-size: 13px;
  line-height: 1.7;
}

.bswt-system__materials {
  display: flex;
  gap: 8px;
  align-content: flex-start;
  flex-wrap: wrap;
}

.bswt-system__materials span {
  padding: 7px 10px;
  border: 1px solid #d8e3da;
  border-radius: 2px;
  background: #fff;
  color: #4e6256;
  font-size: 11px;
  line-height: 1.35;
}

.bswt-system-map__footer {
  display: flex;
  padding-top: 27px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.bswt-system-map__footer p {
  margin: 0;
  color: var(--bswt-muted);
  font-size: 13px;
}

.bswt-system-map__footer a {
  color: var(--bswt-green);
  font-size: 13px;
  font-weight: 800;
}

.bswt-system-map__footer a:hover {
  color: var(--bswt-green-dark);
}

.bswt-brief {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  gap: 76px;
}

.bswt-brief__content .bsfi-section__intro {
  max-width: 660px;
  margin-top: 18px;
}

.bswt-brief__list {
  display: grid;
  margin-top: 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--bswt-line);
  border-left: 1px solid var(--bswt-line);
}

.bswt-brief__list li {
  min-height: 112px;
  padding: 20px;
  border-right: 1px solid var(--bswt-line);
  border-bottom: 1px solid var(--bswt-line);
  color: var(--bswt-muted);
  font-size: 13px;
  line-height: 1.65;
}

.bswt-brief__list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--bswt-ink);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bswt-brief__panel {
  display: flex;
  padding: 44px;
  flex-direction: column;
  justify-content: center;
  border-radius: 4px;
  background:
    radial-gradient(circle at 100% 0, rgba(58, 168, 202, 0.2), transparent 20rem),
    var(--bswt-green-dark);
  color: #fff;
}

.bswt-brief__panel-label {
  margin-bottom: 34px;
  color: #d8ec8b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.bswt-brief__panel blockquote {
  margin: 0;
  color: #fff;
  font-size: clamp(25px, 3vw, 35px);
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.bswt-brief__panel p {
  margin: 25px 0 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.7;
}

.bswt-brief__panel .bsfi-button {
  align-self: flex-start;
}

.bswt-faq {
  border-top: 1px solid #edf1ee;
}

.bswt-faq__list {
  border-top: 1px solid var(--bswt-line);
}

.bswt-faq__item {
  border-bottom: 1px solid var(--bswt-line);
}

.bswt-faq__item summary {
  position: relative;
  padding: 25px 52px 25px 0;
  color: var(--bswt-ink);
  cursor: pointer;
  font-size: 17px;
  font-weight: 750;
  list-style: none;
}

.bswt-faq__item summary::-webkit-details-marker {
  display: none;
}

.bswt-faq__item summary::after {
  position: absolute;
  top: 50%;
  right: 7px;
  color: var(--bswt-green);
  content: "+";
  font-size: 24px;
  font-weight: 400;
  transform: translateY(-50%);
}

.bswt-faq__item[open] summary::after {
  content: "−";
}

.bswt-faq__item p {
  max-width: 900px;
  margin: -4px 0 25px;
  color: var(--bswt-muted);
  font-size: 14px;
  line-height: 1.75;
}

@media (max-width: 960px) {
  .bswt-hero .bsfi-hero__content {
    width: min(700px, 76%);
  }

  .bswt-system {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .bswt-brief {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 700px) {
  .bswt-hero .bsfi-hero__content {
    width: 100%;
  }

  .bswt-hero .bsfi-hero__title {
    font-size: 42px;
  }

  .bswt-pathways {
    grid-template-columns: 1fr;
  }

  .bswt-pathway {
    min-height: 330px;
    padding: 29px;
  }

  .bswt-system {
    padding: 27px 0;
  }

  .bswt-system__heading {
    grid-template-columns: 34px 1fr;
    gap: 10px;
  }

  .bswt-system-map__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .bswt-brief__list {
    grid-template-columns: 1fr;
  }

  .bswt-brief__list li {
    min-height: 0;
  }

  .bswt-brief__panel {
    padding: 35px 27px;
  }

  .bswt-faq__item summary {
    font-size: 15px;
  }
}

/* Homepage application cases */
.bs-case {
  padding: 88px 0;
  background:
    radial-gradient(circle at 8% 15%, rgba(27,143,58,.09), transparent 27%),
    linear-gradient(180deg, #f6f9f6 0%, #fff 100%);
  overflow: hidden;
}

.bs-case__header {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, 1fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 36px;
  text-align: left;
}

.bs-case__eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.bs-case__title {
  margin: 0;
  color: #18251c;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -.035em;
}

.bs-case__subtitle {
  max-width: 680px;
  margin: 0;
  color: #5c685f;
  font-size: 16px;
  line-height: 1.75;
}

.bs-case__viewport {
  width: calc(100% + 24px);
  margin: 0 -12px;
  overflow: hidden;
  outline: none;
}

.bs-case__viewport:focus-visible {
  border-radius: 18px;
  box-shadow: 0 0 0 3px rgba(27,143,58,.25);
}

.bs-case__track {
  display: flex;
  will-change: transform;
}

.bs-case__card {
  flex: 0 0 33.333333%;
  min-width: 0;
  padding: 0 12px;
}

.bs-case__card-link {
  display: flex;
  height: 100%;
  min-height: 490px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e3e9e4;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(20,55,29,.07);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

a.bs-case__card-link:hover,
a.bs-case__card-link:focus-visible {
  border-color: rgba(27,143,58,.48);
  box-shadow: 0 20px 45px rgba(20,55,29,.14);
  transform: translateY(-6px);
}

.bs-case__img {
  position: relative;
  height: 215px;
  overflow: hidden;
  border-radius: 0;
  background: #e9efe9;
}

.bs-case__img::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(10,28,15,.52));
  content: "";
}

.bs-case__img img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  transition: transform .5s ease;
}

a.bs-case__card-link:hover .bs-case__img img {
  transform: scale(1.045);
}

.bs-case__number {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 12px;
  color: rgba(255,255,255,.92);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.04em;
}

.bs-case__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 24px 22px;
}

.bs-case__tag {
  display: inline-block;
  margin-bottom: 13px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--primary-light-bg);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.bs-case__name {
  min-height: 52px;
  margin: 0 0 8px;
  color: #1c2920;
  font-size: 20px;
  line-height: 1.3;
}

.bs-case__product {
  margin: 0 0 13px;
  color: #26763b;
  font-size: 12px;
  font-weight: 700;
}

.bs-case__text {
  display: -webkit-box;
  margin: 0 0 18px;
  overflow: hidden;
  color: #637067;
  font-size: 14px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.bs-case__link,
.bs-case__pending {
  margin-top: auto;
  font-size: 13px;
  font-weight: 800;
}

.bs-case__link { color: var(--primary-color); }
.bs-case__pending { color: #89918b; }

.bs-case__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}

.bs-case__status {
  margin: 0;
  color: #88918a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
}

.bs-case__current {
  color: var(--primary-dark);
  font-size: 18px;
}

.bs-case__controls {
  display: flex;
  gap: 10px;
  margin-top: 0;
}

.bs-case__btn {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid #d8e0da;
  border-radius: 50%;
  background: #fff;
  color: #26352a;
  cursor: pointer;
  transition: var(--transition);
}

.bs-case__btn:hover,
.bs-case__btn:focus-visible {
  border-color: var(--primary-color);
  outline: none;
  background: var(--primary-color);
  color: #fff;
}

@media (max-width: 1024px) {
  .bs-case__card { flex-basis: 50%; }
  .bs-case__header { gap: 30px; }
}

@media (max-width: 720px) {
  .bs-case { padding: 64px 0; }
  .bs-case__header { grid-template-columns: 1fr; gap: 16px; }
  .bs-case__card { flex-basis: 100%; }
  .bs-case__card-link { min-height: 470px; }
  .bs-case__name { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .bs-case__track,
  .bs-case__card-link,
  .bs-case__img img { transition: none !important; }
}

/* Homepage-only corrections. Font Awesome SVG artwork: CC BY 4.0. */
.home-icon{display:inline-block;width:1em;height:1em;fill:currentColor;vertical-align:-.125em;flex-shrink:0}
.bs-seo-highlight .home-icon{margin-right:6px}
.bs-seo-contact .home-icon{margin-right:5px}
.bs-seo-contact .home-icon,.bs-seo-highlight .home-icon,.bs-seo-topbar-left>span:not(.bs-seo-divider) .home-icon{color:#a9d6b8}
.banner-dots button{appearance:none;display:inline-block;width:25px;height:24px;padding:0;border:0;background:transparent;position:relative;cursor:pointer}
.banner-dots button::before{content:"";position:absolute;left:0;right:0;top:10px;height:3px;border-radius:3px;background:rgba(255,255,255,.65)}
.banner-dots button.active{width:40px}
.banner-dots button.active::before{background:#a8d5b4}
.banner-dots button:focus-visible{outline:2px solid #fff;outline-offset:3px}
.bs-prod .bs-prod__card .bs-prod__cas{color:#46574f}
.bs-buyer-process__header>span{color:#8be0c0}
.crc-footer .contact-btn-footer{background:#155e3c;color:#fff}
.crc-footer .contact-btn-footer:hover,.crc-footer .contact-btn-footer:focus-visible{background:#104b30;color:#fff}
