:root {
  --ink: #181816;
  --muted: #687276;
  --line: #dde4e0;
  --paper: #f7f5f0;
  --white: #ffffff;
  --green: #243f34;
  --green-dark: #132820;
  --blue: #245b89;
  --coral: #d6673d;
  --gold: #c5974b;
  --shadow: 0 20px 50px rgba(31, 36, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

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

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 12px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(221, 228, 224, 0.86);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  align-items: center;
  color: #33403c;
  font-size: 14px;
  font-weight: 760;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  padding: 12px 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.nav-dropdown > button span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 180ms ease;
}

.product-menu {
  position: absolute;
  top: calc(100% + 11px);
  left: -26px;
  display: grid;
  width: 310px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  box-shadow: 0 22px 50px rgba(20, 35, 29, 0.17);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.product-menu a {
  padding: 10px 12px;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 650;
}

.product-menu a:hover,
.product-menu a:focus-visible {
  color: var(--green);
  background: var(--paper);
}

.product-menu .menu-all {
  margin-bottom: 6px;
  border-bottom: 1px solid var(--line);
  color: var(--green);
  font-weight: 850;
}

.nav-dropdown:hover .product-menu,
.nav-dropdown:focus-within .product-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover > button span,
.nav-dropdown:focus-within > button span {
  transform: rotate(180deg);
}

/* Unified product navigation */
.products-navigation { position:relative; }
.products-nav-trigger { display:flex; align-items:center; gap:7px; min-height:44px; padding:0; border:0; color:inherit; background:transparent; font:inherit; cursor:pointer; }
.products-nav-trigger>span:last-child { transition:transform 160ms ease; }
.products-mega-menu { position:fixed; z-index:40; top:76px; left:50%; width:min(920px,calc(100vw - 40px)); padding:26px; border:1px solid var(--line); border-radius:4px; background:#fff; box-shadow:0 24px 60px rgba(20,35,29,.18); opacity:0; visibility:hidden; transform:translate(-50%,-7px); transition:opacity 160ms ease,transform 160ms ease,visibility 160ms ease; }
.products-navigation:hover .products-mega-menu,.products-navigation:focus-within .products-mega-menu,.products-navigation.is-open .products-mega-menu { opacity:1; visibility:visible; transform:translate(-50%,0); }
.products-navigation:hover .products-nav-trigger>span:last-child,.products-navigation:focus-within .products-nav-trigger>span:last-child,.products-navigation.is-open .products-nav-trigger>span:last-child { transform:rotate(180deg); }
.mega-menu-groups { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:0; }
.mega-menu-group { min-width:0; padding:0 20px; border-right:1px solid var(--line); }
.mega-menu-group:first-child { padding-left:0; }
.mega-menu-group:last-child { padding-right:0; border-right:0; }
.mega-category-trigger { display:flex; align-items:center; justify-content:space-between; width:100%; min-height:44px; padding:0 0 10px; border:0; border-bottom:1px solid var(--line); color:var(--green-dark); background:transparent; font:inherit; font-size:15px; font-weight:850; text-align:left; }
.mega-category-trigger>span:last-child { display:none; }
.mega-product-links { display:grid; padding-top:8px; }
.mega-product-links a { min-height:38px; padding:9px 4px; color:var(--muted); font-size:13px; font-weight:680; line-height:1.35; }
.mega-product-links a:hover,.mega-product-links a:focus-visible { color:var(--green); background:var(--paper); }
.mega-product-links .mega-category-link { display:none; color:var(--green); font-weight:850; }
.mega-menu-footer { display:flex; align-items:center; justify-content:space-between; gap:16px; margin-top:22px; padding-top:18px; border-top:1px solid var(--line); }
.mega-menu-footer a { min-height:44px; padding:12px 15px; color:var(--green); font-weight:850; }
.mega-menu-footer .mega-quote-link { color:#fff; border-radius:5px; background:var(--green); }

.header-action,
.primary-btn,
.secondary-btn,
.inquiry-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 820;
}

.icon-action {
  width: 46px;
  min-width: 46px;
  padding: 0;
  border-radius: 50%;
}

.icon-action img {
  width: 23px;
  height: 23px;
}

.header-action,
.primary-btn,
.inquiry-form button {
  color: var(--white);
  background: var(--green);
}

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #e2e6dd;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 245, 240, 0.02) 35%, rgba(247, 245, 240, 0.88) 62%, rgba(247, 245, 240, 0.98));
}

.hero-panel {
  position: relative;
  z-index: 2;
  max-width: 710px;
  margin-left: auto;
  padding: 118px clamp(28px, 6vw, 92px) 88px 40px;
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(46px, 6vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-panel p,
.section-heading p,
.category-card p,
.process-grid p,
.factory-content p,
.contact-section p,
footer p {
  color: var(--muted);
  line-height: 1.62;
}

.hero-panel > p:last-of-type {
  max-width: 650px;
  color: #5f625e;
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.secondary-btn {
  color: var(--green-dark);
  border: 1px solid var(--green);
  background: rgba(255, 255, 255, 0.7);
}

.hero .secondary-btn {
  color: var(--green-dark);
  border-color: var(--green-dark);
  background: rgba(255, 255, 255, 0.5);
}

.secondary-btn.dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1040px, calc(100% - 36px));
  margin: 18px auto 0;
  box-shadow: var(--shadow);
}

.hero-stats span {
  min-height: 92px;
  padding: 20px;
  border-right: 1px solid var(--line);
  background: var(--white);
}

.hero-stats span:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green);
  font-size: 24px;
}

.intro-band {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 58px);
  color: var(--white);
  background: var(--green-dark);
}

.intro-band p {
  margin: 0;
  font-weight: 760;
}

.section,
.split-section,
.factory-section,
.contact-section,
.product-strip,
.material-story {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 0;
}

.section-heading h2,
.split-section h2,
.factory-section h2,
.contact-section h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

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

.featured-admin-products {
  padding-top: 0;
}

#featured-products:empty {
  display: none;
}

.category-card {
  display: flex;
  flex-direction: column;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--white);
}

.category-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  background: #eef1ed;
}

.category-card:hover {
  transform: translateY(-3px);
  border-color: #cbd5d0;
  box-shadow: 0 18px 44px rgba(31, 36, 40, 0.1);
}

.category-card {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.category-card img[src$=".png"] {
  object-fit: contain;
  padding: 14px;
}

#featured-products .category-card img {
  object-fit: contain;
  padding: 0;
}

.featured-link {
  display: inline-block;
  margin-top: 4px;
  color: var(--green);
  font-weight: 850;
}

.category-card[id] {
  scroll-margin-top: 120px;
}

.category-card div {
  padding: 22px;
}

.category-card h3,
.process-grid h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.industries-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 24px 0 90px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.industry-grid article {
  min-height: 250px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.industry-grid article:last-child { border-right: 0; }
.industry-grid span { color: var(--coral); font-weight: 850; }
.industry-grid h3 { margin-top: 58px; margin-bottom: 10px; font-size: 22px; }
.industry-grid p { color: var(--muted); line-height: 1.6; }

.material-story {
  padding: 78px clamp(24px, 6vw, 82px);
  color: var(--white);
  background: var(--green-dark);
}

.material-story h2 {
  max-width: 800px;
  margin-bottom: 20px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.03;
}

.material-story > p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.65;
}

.material-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 42px;
  background: rgba(255, 255, 255, 0.2);
}

.material-points span {
  padding: 22px;
  background: var(--green-dark);
  font-weight: 760;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  padding: 90px 0;
}

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

.process-grid article {
  min-height: 270px;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(31, 36, 40, 0.08);
}

.process-grid span {
  color: var(--gold);
  font-weight: 900;
}

.factory-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 44px;
  padding: 68px clamp(22px, 4vw, 44px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.info-grid span {
  padding: 18px;
  border-left: 4px solid var(--blue);
  background: var(--white);
  color: var(--muted);
}

.info-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: start;
  padding: 58px clamp(22px, 4vw, 44px);
  margin-top: 80px;
  margin-bottom: 70px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-dark), var(--green) 58%, var(--blue));
}

.contact-section p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-actions {
  align-items: stretch;
}

.contact-channel {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 10px 17px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  transition: transform 180ms ease, background 180ms ease;
}

.contact-channel:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.17);
}

.contact-channel .contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  font-size: 21px;
}

.contact-channel .contact-icon img {
  width: 20px;
  height: 20px;
}

.email-channel .contact-icon {
  background: var(--blue);
}

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

.contact-channel small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 11px;
}

.contact-channel strong {
  color: var(--white);
  font-size: 14px;
}

.inquiry-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: #34413f;
  font-size: 14px;
  font-weight: 760;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid #ccd6d1;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: #fbfcfb;
}

.inquiry-form button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 58px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

footer p {
  margin: 0;
}

footer p:first-child {
  color: var(--ink);
  font-weight: 850;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow: visible;
    padding-bottom: 2px;
  }

  .products-mega-menu { top:126px; }

  .product-menu {
    left: 0;
    width: min(310px, calc(100vw - 36px));
  }

  .hero {
    min-height: 640px;
  }

  .hero::after {
    background: rgba(247, 245, 240, 0.82);
  }

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

  .industry-grid article:nth-child(2) { border-right: 0; }

  .split-section,
  .factory-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 14px;
  }

  .header-action {
    padding: 0 14px;
  }

  .header-action.icon-action {
    padding: 0;
  }

  h1 {
    font-size: 41px;
  }

  .hero-panel {
    padding: 82px 22px 64px;
  }

  .hero-stats,
  .category-grid,
  .process-grid,
  .info-grid,
  .material-points,
  .industry-grid {
    grid-template-columns: 1fr;
  }


  .hero-stats span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .industry-grid article { border-right: 0; border-bottom: 1px solid var(--line); }

  .intro-band {
    display: block;
  }

  .intro-band p + p {
    margin-top: 10px;
  }

  footer {
    display: block;
  }

  footer p + p {
    margin-top: 8px;
  }
}

@media(max-width:640px){
  .nav-links,.home-page .nav-links { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:0 16px; overflow:visible; width:100%; padding:4px 0 2px; }
  .nav-links>a,.home-page .nav-links>a { display:flex; align-items:center; min-width:0; min-height:44px; white-space:normal; }
  .products-navigation { grid-column:1/-1; }
  .products-nav-trigger { width:100%; justify-content:space-between; }
  .products-mega-menu { position:static; display:none; width:100%; max-height:none; padding:8px 0 14px; border:0; border-top:1px solid var(--line); border-radius:0; box-shadow:none; opacity:1; visibility:visible; transform:none; transition:none; }
  .products-navigation:hover .products-mega-menu,.products-navigation:focus-within .products-mega-menu { display:none; transform:none; }
  .products-navigation.is-open .products-mega-menu { display:block; transform:none; }
  .mega-menu-groups { grid-template-columns:1fr; }
  .mega-menu-group { padding:0; border-right:0; border-bottom:1px solid var(--line); }
  .mega-category-trigger { min-height:48px; padding:0 4px; border-bottom:0; }
  .mega-category-trigger>span:last-child { display:inline; color:var(--coral); font-size:20px; }
  .mega-product-links { display:none; padding:0 0 8px 12px; }
  .mega-menu-group.is-open .mega-product-links { display:grid; }
  .mega-product-links a { display:flex; align-items:center; min-height:44px; padding:10px 6px; }
  .mega-product-links .mega-category-link { display:flex; }
  .mega-menu-footer { align-items:stretch; flex-direction:column; margin-top:14px; padding-top:12px; }
  .mega-menu-footer a { display:flex; align-items:center; justify-content:center; min-height:46px; }
}

/* B2B homepage */
.home-page { background: #f7f5f0; }
.header-quote { display:inline-flex; align-items:center; justify-content:center; min-height:44px; padding:0 18px; border-radius:6px; color:#fff; background:var(--green); font-size:14px; font-weight:850; }
.b2b-hero { position:relative; display:flex; align-items:center; min-height:690px; overflow:hidden; color:#fff; background:var(--green-dark); }
.b2b-hero-image,.b2b-hero-overlay { position:absolute; inset:0; width:100%; height:100%; }
.b2b-hero-image { object-fit:cover; object-position:center; }
.b2b-hero-overlay { background:linear-gradient(90deg,rgba(9,24,18,.94) 0%,rgba(9,24,18,.83) 38%,rgba(9,24,18,.18) 76%); }
.b2b-hero-content { position:relative; z-index:1; width:min(1180px,calc(100% - 44px)); margin:0 auto; padding:94px 0 120px; }
.b2b-hero-content h1 { max-width:790px; margin-bottom:24px; font-size:clamp(48px,6.4vw,82px); line-height:.98; }
.b2b-hero-lead { max-width:690px; color:rgba(255,255,255,.78); font-size:clamp(17px,2vw,21px); line-height:1.65; }
.b2b-hero .eyebrow { color:#f2a783; }
.hero-primary { color:var(--green-dark); background:#fff; }
.hero-secondary { color:#fff; border-color:rgba(255,255,255,.58); background:rgba(255,255,255,.08); }
.hero-proof { display:flex; flex-wrap:wrap; gap:28px; margin-top:48px; padding-top:25px; border-top:1px solid rgba(255,255,255,.25); }
.hero-proof span { min-width:190px; color:rgba(255,255,255,.64); font-size:13px; }
.hero-proof strong { display:block; margin-bottom:4px; color:#fff; font-size:17px; }
.b2b-section { width:min(1180px,calc(100% - 36px)); margin:0 auto; padding:100px 0; }
.b2b-heading { display:flex; align-items:end; justify-content:space-between; gap:48px; margin-bottom:38px; }
.b2b-heading > div { max-width:730px; }
.b2b-heading h2 { margin:0; font-size:clamp(34px,4.6vw,58px); line-height:1.03; }
.b2b-heading > p { max-width:380px; margin:0; color:var(--muted); line-height:1.65; }
.solution-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.solution-card { display:flex; flex-direction:column; overflow:hidden; border:1px solid var(--line); background:#fff; }
.solution-card > img { width:100%; height:340px; object-fit:cover; background:#eef0ec; }
.solution-card.bags-solution > img { object-fit:contain; padding:18px; }
.solution-content { display:flex; flex:1; flex-direction:column; padding:25px; }
.solution-letter { width:30px; height:30px; margin-bottom:22px; border-radius:50%; color:#fff; background:var(--coral); text-align:center; font-size:13px; font-weight:900; line-height:30px; }
.solution-content h3 { margin-bottom:10px; font-size:25px; }
.solution-content > p:not(.solution-letter) { color:var(--muted); line-height:1.6; }
.solution-content nav { display:grid; margin-top:auto; padding-top:18px; border-top:1px solid var(--line); }
.solution-content nav a { display:flex; justify-content:space-between; padding:8px 0; color:var(--green); font-weight:800; }
.solution-content nav a::after { content:"→"; }
.why-section { display:grid; grid-template-columns:.78fr 1.22fr; gap:70px; padding:92px max(24px,calc((100vw - 1180px)/2)); color:#fff; background:var(--green-dark); }
.why-intro { align-self:center; }
.why-intro h2 { margin-bottom:18px; font-size:clamp(36px,4.4vw,58px); line-height:1.03; }
.why-intro > p:not(.eyebrow) { color:rgba(255,255,255,.62); font-size:17px; line-height:1.7; }
.why-grid { display:grid; grid-template-columns:repeat(2,1fr); border-top:1px solid rgba(255,255,255,.18); border-left:1px solid rgba(255,255,255,.18); }
.why-grid article { min-height:245px; padding:26px; border-right:1px solid rgba(255,255,255,.18); border-bottom:1px solid rgba(255,255,255,.18); }
.why-grid span { color:#f2a783; font-size:13px; font-weight:900; }
.why-grid h3 { margin:54px 0 10px; font-size:23px; }
.why-grid p { color:rgba(255,255,255,.62); line-height:1.6; }
.showcase-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.showcase-grid a { overflow:hidden; background:#fff; border:1px solid var(--line); }
.showcase-grid img { width:100%; height:285px; object-fit:contain; background:#eef0ed; transition:transform 250ms ease; }
.showcase-grid a:hover img { transform:scale(1.025); }
.showcase-grid span { display:block; padding:18px; }
.showcase-grid strong,.showcase-grid small { display:block; }
.showcase-grid strong { margin-bottom:5px; font-size:17px; }
.showcase-grid small { color:var(--muted); }
.showcase-section .featured-admin-products { padding-top:24px; }
.case-section { padding:100px max(24px,calc((100vw - 1180px)/2)); color:#fff; background:#202725; }
.b2b-heading.light > p { color:rgba(255,255,255,.6); }
.case-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.case-grid article { overflow:hidden; border:1px solid rgba(255,255,255,.16); background:rgba(255,255,255,.04); }
.case-grid img { width:100%; height:300px; object-fit:cover; }
.case-grid article:nth-child(3) img { object-fit:contain; background:#edf0ed; }
.case-grid article div { padding:24px; }
.case-grid span { color:#f2a783; font-size:12px; font-weight:850; text-transform:uppercase; }
.case-grid h3 { margin:10px 0; font-size:23px; }
.case-grid p { color:rgba(255,255,255,.62); line-height:1.6; }
.faq-section { display:grid; grid-template-columns:.75fr 1.25fr; gap:70px; width:min(1180px,calc(100% - 36px)); margin:0 auto; padding:100px 0; }
.faq-intro { align-self:start; position:sticky; top:120px; }
.faq-intro h2 { font-size:clamp(34px,4vw,52px); line-height:1.04; }
.faq-intro > p:not(.eyebrow) { color:var(--muted); line-height:1.65; }
.faq-list { border-top:1px solid var(--line); }
.faq-list details { border-bottom:1px solid var(--line); }
.faq-list summary { position:relative; padding:24px 46px 24px 4px; font-size:18px; font-weight:820; cursor:pointer; list-style:none; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary::after { content:"+"; position:absolute; right:5px; top:18px; color:var(--coral); font-size:28px; font-weight:400; }
.faq-list details[open] summary::after { content:"−"; }
.faq-list details p { padding:0 50px 24px 4px; color:var(--muted); line-height:1.7; }
.b2b-contact { margin-top:0; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.form-note { margin:0!important; color:var(--muted)!important; font-size:11px; line-height:1.5!important; }
.b2b-footer div strong,.b2b-footer div span { display:block; }
.b2b-footer div span { margin-top:4px; color:var(--muted); font-size:12px; }

@media(max-width:980px){
  .header-quote { margin-left:auto; }
  .b2b-hero { min-height:650px; }
  .b2b-hero-overlay { background:rgba(9,24,18,.72); }
  .solution-grid,.case-grid { grid-template-columns:1fr; }
  .solution-card { display:grid; grid-template-columns:.9fr 1.1fr; }
  .solution-card > img { height:100%; min-height:420px; }
  .why-section,.faq-section { grid-template-columns:1fr; }
  .faq-intro { position:static; }
  .showcase-grid { grid-template-columns:repeat(2,1fr); }
}

@media(max-width:640px){
  .home-page .site-header { align-items:center; }
  .home-page .brand small { display:none; }
  .header-quote { min-height:40px; padding:0 12px; font-size:12px; }
  .home-page .nav-links { flex-wrap:nowrap; gap:20px; overflow-x:auto; padding:7px 0 2px; }
  .home-page .nav-links a { flex:0 0 auto; }
  .b2b-hero { min-height:720px; }
  .b2b-hero-image { object-position:38% center; }
  .b2b-hero-content { width:calc(100% - 36px); padding:76px 0 82px; }
  .b2b-hero-content h1 { font-size:44px; line-height:1; }
  .b2b-hero-lead br { display:none; }
  .hero-proof { gap:18px; }
  .hero-proof span { min-width:0; width:100%; }
  .b2b-section { padding:72px 0; }
  .b2b-heading { align-items:flex-start; flex-direction:column; gap:18px; }
  .solution-card { display:flex; }
  .solution-card > img { min-height:0; height:300px; }
  .why-section,.case-section { padding:72px 18px; }
  .why-grid { grid-template-columns:1fr; }
  .why-grid article { min-height:210px; }
  .why-grid h3 { margin-top:36px; }
  .showcase-grid { grid-template-columns:1fr; }
  .showcase-grid img { height:330px; }
  .faq-section { padding:72px 0; }
  .form-row { grid-template-columns:1fr; }
  .b2b-footer { display:block; }
  .b2b-footer p { margin-top:12px; }
}

/* Current B2B homepage refinement */
.hero-panel{max-width:760px;padding-top:74px;padding-bottom:60px}
.hero-panel h1{max-width:690px;font-size:clamp(43px,4.7vw,58px);line-height:1.02}
.hero-panel .hero-brand-line{max-width:620px;margin-bottom:12px;color:var(--green-dark);font-family:Georgia,"Times New Roman",serif;font-size:clamp(23px,2.7vw,32px);line-height:1.15}
.hero-panel .hero-description{max-width:650px;color:#5f625e;font-size:18px;line-height:1.62}
.hero-stats{grid-template-columns:repeat(4,1fr);width:min(1180px,calc(100% - 36px))}
.hero-stats strong{font-size:19px}
#solutions,#why-mch,#products,#process,#cases,#faq,#contact{scroll-margin-top:110px}

.solution-family-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.solution-family{display:flex;flex-direction:column;overflow:hidden;border:1px solid var(--line);border-radius:2px;background:var(--white)}
.solution-family>img{width:100%;height:240px;object-fit:cover;background:#eef1ed}
.solution-family>img[src$=".png"]{object-fit:contain;padding:18px}
.solution-family>div{display:flex;flex:1;flex-direction:column;padding:22px}
.solution-label{margin-bottom:15px;color:var(--coral);font-size:12px;font-weight:850;text-transform:uppercase}
.solution-family h3{margin-bottom:22px;font-family:Georgia,"Times New Roman",serif;font-size:21px;font-weight:500;line-height:1.3}
.solution-family nav{display:grid;margin-top:auto;border-top:1px solid var(--line)}
.solution-family nav a{display:flex;justify-content:space-between;gap:14px;padding:11px 0;border-bottom:1px solid var(--line);color:var(--green);font-size:14px;font-weight:800}
.solution-family nav a:last-child{border-bottom:0}

.why-mch-section{width:100%;padding-right:max(24px,calc((100vw - 1180px)/2));padding-left:max(24px,calc((100vw - 1180px)/2))}
.why-points{display:grid;grid-template-columns:repeat(4,1fr);margin-top:42px;border-top:1px solid rgba(255,255,255,.2);border-left:1px solid rgba(255,255,255,.2)}
.why-points article{min-height:245px;padding:24px;border-right:1px solid rgba(255,255,255,.2);border-bottom:1px solid rgba(255,255,255,.2)}
.why-points span{color:#f2a783;font-size:12px;font-weight:900}
.why-points h3{margin:50px 0 10px;font-size:21px}
.why-points p{color:rgba(255,255,255,.68);line-height:1.6}

.selected-product-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.selected-product{display:flex;min-width:0;flex-direction:column;overflow:hidden;border:1px solid var(--line);background:var(--white);transition:transform 180ms ease,border-color 180ms ease,box-shadow 180ms ease}
.selected-product:hover{transform:translateY(-3px);border-color:#cbd5d0;box-shadow:0 18px 44px rgba(31,36,40,.1)}
.selected-product img{display:block;width:100%;height:auto;aspect-ratio:4 / 3;object-fit:cover;background:#eef1ed}
.selected-product span,.selected-product strong,.selected-product small{display:block}
.selected-product span{display:flex;flex-direction:column;gap:8px;padding:20px}
.selected-product strong{margin:0;font-size:18px;line-height:1.3}
.selected-product small{margin:0;color:var(--muted);line-height:1.5}
.selected-product-link{margin-top:auto;padding-top:12px;border-top:1px solid var(--line);color:var(--green);font-size:13px;font-style:normal;font-weight:850}
.process-grid-four{grid-template-columns:repeat(2,1fr)}
.process-grid-four article{min-height:235px}

.cases-section{padding:84px max(24px,calc((100vw - 1180px)/2));background:#eeeae1}
.case-grid-simple{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.case-grid-simple article{overflow:hidden;border:1px solid #d5d9d4;background:var(--white)}
.case-grid-simple img{width:100%;height:285px;object-fit:cover;background:#eef1ed}
.case-grid-simple article:last-child img{object-fit:contain;padding:16px}
.case-grid-simple div{padding:23px}
.case-grid-simple span{color:var(--coral);font-size:12px;font-weight:850;text-transform:uppercase}
.case-grid-simple h3{margin:10px 0;font-size:22px}
.case-grid-simple p{color:var(--muted);line-height:1.62}

.faq-section-simple{display:grid;grid-template-columns:minmax(0,.72fr) minmax(0,1.28fr);gap:70px;width:min(1180px,calc(100% - 36px));margin:0 auto;padding:90px 0 18px}
.faq-list-simple{border-top:1px solid var(--line)}
.faq-list-simple details{border-bottom:1px solid var(--line)}
.faq-list-simple summary{position:relative;padding:22px 45px 22px 3px;font-size:17px;font-weight:800;cursor:pointer;list-style:none}
.faq-list-simple summary::-webkit-details-marker{display:none}
.faq-list-simple summary::after{content:"+";position:absolute;top:15px;right:4px;color:var(--coral);font-size:28px;font-weight:400}
.faq-list-simple details[open] summary::after{content:"−"}
.faq-list-simple details p{padding:0 48px 22px 3px;color:var(--muted);line-height:1.68}

@media(max-width:980px){
  .hero-stats,.why-points{grid-template-columns:repeat(2,1fr)}
  .solution-family-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .case-grid-simple{grid-template-columns:1fr}
  .solution-family{display:flex}
  .solution-family>img{height:260px;min-height:0}
  .selected-product-grid{grid-template-columns:repeat(2,1fr)}
  .faq-section-simple{grid-template-columns:1fr;gap:35px}
}

@media(max-width:640px){
  .site-header{align-items:center}
  .brand small{display:none}
  .site-header .header-action{min-height:40px;padding:0 12px;font-size:12px}
  .nav-links{flex-wrap:nowrap;gap:20px;overflow-x:auto;padding:7px 0 4px}
  .nav-links a{flex:0 0 auto}
  .hero-panel{padding-top:68px}
  .hero-panel h1{font-size:40px}
  .hero-stats,.why-points,.selected-product-grid{grid-template-columns:1fr}
  .solution-family-grid{grid-template-columns:1fr}
  .solution-family{display:flex}
  .solution-family>img{min-height:0;height:280px}
  .why-points article{min-height:205px}
  .why-points h3{margin-top:34px}
  .case-grid-simple img{height:270px}
  .process-grid-four{grid-template-columns:1fr}
  .faq-section-simple{padding-top:72px}
}

/* Keep unified mobile navigation vertical and free of page-level horizontal overflow. */
@media(max-width:640px){
  .site-header .nav-links,.home-page .nav-links { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:0 16px; overflow:visible; }
  .site-header .nav-links>a,.home-page .nav-links>a { min-width:0; white-space:normal; }
  .site-header .products-navigation { grid-column:1/-1; min-width:0; }
}
