:root {
  --green: #1B5E20;
  --green-dark: #103b16;
  --gold: #F9A825;
  --beige: #FFF8E1;
  --white: #ffffff;
  --ink: #1d2b1d;
  --muted: #647264;
  --line: #e8dfc1;
  --shadow: 0 18px 45px rgba(22, 44, 20, .12);
  --shadow-strong: 0 28px 70px rgba(9, 42, 13, .24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(249, 168, 37, .10), transparent 28rem),
    linear-gradient(180deg, #fffdf6, #ffffff 44rem);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(27, 94, 32, .12);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(17, 54, 19, .06);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 220px; }
.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(16, 59, 22, .16);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--green);
  background: var(--gold);
  font-weight: 800;
}
.brand strong { display: block; color: var(--green); font-size: 1.02rem; }
.brand small { display: block; color: var(--muted); font-size: .78rem; }
.site-nav { display: flex; align-items: center; gap: 18px; font-size: .94rem; font-weight: 700; color: var(--green-dark); }
.site-nav a { padding: 8px 2px; }
.site-nav a[aria-current="page"] { color: var(--gold); }
.nav-cta {
  padding: 10px 16px !important;
  border-radius: 8px;
  color: var(--white) !important;
  background: var(--green);
}
.nav-toggle { display: none; border: 0; background: var(--green); color: var(--white); border-radius: 8px; padding: 10px 14px; font-weight: 800; }

.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero picture, .hero img, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero img { object-fit: cover; }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 37, 12, .92), rgba(11, 53, 18, .72) 48%, rgba(13, 57, 16, .28)),
    linear-gradient(0deg, rgba(0,0,0,.18), transparent 45%);
}
.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, .55fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: end;
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: clamp(62px, 8vw, 112px) clamp(20px, 5vw, 70px);
}
.hero-content {
  position: relative;
  width: min(980px, 100%);
  padding: 0;
  color: var(--white);
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; line-height: 1.12; color: var(--green-dark); }
.hero h1 { color: var(--white); font-size: clamp(2.4rem, 6vw, 5.8rem); max-width: 980px; }
.hero p:not(.eyebrow) { max-width: 800px; font-size: clamp(1rem, 2vw, 1.3rem); color: rgba(255,255,255,.92); }
.hero-actions, .section-head { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-card {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(16px);
}
.hero-card h2 { margin: 8px 0 20px; color: var(--white); font-size: clamp(1.45rem, 2.2vw, 2rem); }
.card-kicker {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 8px;
  color: #263111;
  background: var(--gold);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}
.hero-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.hero-card-grid div {
  padding: 14px;
  border-radius: 8px;
  background: rgba(255,255,255,.12);
}
.hero-card-grid strong { display: block; color: var(--gold); line-height: 1.15; }
.hero-card-grid span { display: block; margin-top: 4px; color: rgba(255,255,255,.82); font-size: .82rem; line-height: 1.35; }
.quote-link {
  display: block;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  font-weight: 900;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 13px 22px;
  font-weight: 800;
  cursor: pointer;
}
.btn.primary { background: var(--gold); color: #1f260e; }
.btn.secondary { color: var(--white); border: 1px solid rgba(255,255,255,.8); }
.supply-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  width: min(1180px, calc(100% - 40px));
  margin: -44px auto 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}
.supply-bar div {
  min-height: 118px;
  padding: 22px;
  color: var(--white);
  background: var(--green-dark);
  border-right: 1px solid rgba(255,255,255,.13);
}
.supply-bar div:nth-child(even) { background: var(--green); }
.supply-bar span { color: var(--gold); font-weight: 900; }
.supply-bar strong { display: block; margin-top: 6px; font-size: 1.1rem; }
.supply-bar small { display: block; margin-top: 5px; color: rgba(255,255,255,.76); line-height: 1.35; }
.supply-bar .rate-card {
  color: #25300c;
  background: var(--gold);
}
.supply-bar .rate-card span { color: var(--green-dark); }
.supply-bar .rate-card strong {
  color: var(--green-dark);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.05;
}
.supply-bar .rate-card small { color: rgba(29, 43, 29, .78); }

.section { padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 70px); }
.section > * { max-width: 1180px; margin-left: auto; margin-right: auto; }
.section.intro-grid > *,
.section.split > *,
.section.inquiry-section > *,
.section.contact-layout > *,
.section.industry-layout > * {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.section h2, .page-title h1, .page-hero h1 { font-size: clamp(2rem, 4vw, 3.7rem); }
.section p, .page-title p, .page-hero p { color: var(--muted); }
.intro-grid, .split, .contact-layout, .industry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.statement-section {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}
.statement-section > * {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.statement-card {
  padding: clamp(24px, 4vw, 38px);
  border-left: 6px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.statement-card p { margin-top: 0; font-size: 1.08rem; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.metric-row div, .info-card, .icon-grid article, .process-grid article, .value-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.metric-row strong { display: block; color: var(--green); font-size: 1.35rem; }
.metric-row span { color: var(--muted); font-size: .9rem; }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  padding: 1px clamp(20px, 5vw, 70px);
  background: var(--line);
}
.trust-strip span {
  display: grid;
  place-items: center;
  min-height: 78px;
  padding: 16px;
  color: var(--green-dark);
  background: var(--beige);
  font-weight: 800;
  text-align: center;
}
.credential-section { background: #ffffff; }
.credential-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.credential-grid article {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--white), var(--beige));
  box-shadow: var(--shadow);
}
.credential-grid strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.05rem;
}
.credential-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}
.section-head { justify-content: space-between; margin-bottom: 28px; }
.section-head h2 { max-width: 780px; }

.card-grid { display: grid; gap: 20px; }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.product-card, .product-detail {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.product-card {
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); }
.product-card img { width: 100%; height: 230px; object-fit: cover; }
.product-tag {
  display: inline-flex;
  margin: 18px 18px 0;
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--beige);
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
}
.product-card h3, .product-card p, .product-card a { margin-left: 18px; margin-right: 18px; }
.product-card h3 { margin-top: 12px; }
.product-card p { color: var(--muted); }
.product-card a {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--green);
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
}
.rounded-img { width: 100%; border-radius: 8px; aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow); }
.feature-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 24px; }
.feature-list span {
  padding: 15px 16px;
  border-left: 4px solid var(--gold);
  background: var(--beige);
  border-radius: 8px;
  font-weight: 800;
  color: var(--green-dark);
}

.quality-band, .process-band { background: var(--beige); }
.table-wrap { overflow-x: auto; border-radius: 8px; box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; min-width: 680px; background: var(--white); }
th, td { padding: 16px 18px; border-bottom: 1px solid var(--line); text-align: left; }
th { color: var(--white); background: var(--green); }
td:first-child { font-weight: 800; color: var(--green-dark); }
.icon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.icon-grid h3, .icon-grid h2 { font-size: 1.1rem; margin-bottom: 8px; }
.logistics-panel { background: linear-gradient(180deg, #fff, var(--beige)); }
.text-link { display: inline-block; margin-top: 18px; color: var(--green); font-weight: 800; border-bottom: 2px solid var(--gold); }

.inquiry-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 42px; background: var(--green-dark); }
.inquiry-section h2, .inquiry-section p:not(.eyebrow) { color: var(--white); }
.inquiry-form {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
label { display: grid; gap: 7px; color: var(--green-dark); font-weight: 800; font-size: .92rem; }
input, textarea {
  width: 100%;
  border: 1px solid #d7d1b8;
  border-radius: 8px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: #fffdf5;
}
textarea { resize: vertical; }
.full { grid-column: 1 / -1; }
.form-note { margin: 12px 0 0; color: var(--green) !important; font-weight: 800; }

.page-hero {
  position: relative;
  min-height: 460px;
  display: grid;
  align-items: end;
  padding: clamp(46px, 8vw, 90px) clamp(20px, 5vw, 70px);
  overflow: hidden;
}
.page-hero.compact { min-height: 390px; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12,45,15,.90), rgba(12,45,15,.48)),
    linear-gradient(0deg, rgba(0,0,0,.16), transparent 45%);
}
.page-hero div { position: relative; z-index: 1; max-width: 860px; }
.page-hero h1 { color: var(--white); }
.page-hero p:not(.eyebrow) { color: rgba(255,255,255,.9); font-size: 1.12rem; }
.page-title {
  padding: clamp(64px, 8vw, 108px) clamp(20px, 5vw, 70px) clamp(30px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(255,248,225,.96), rgba(255,255,255,.95)),
    radial-gradient(circle at 85% 20%, rgba(249,168,37,.28), transparent 22rem);
  border-bottom: 1px solid var(--line);
}
.page-title > * { max-width: 960px; margin-left: auto; margin-right: auto; }
.inner-kpis {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1180px, calc(100% - 40px));
  margin: -34px auto 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}
.page-title + .inner-kpis { margin-top: 0; transform: translateY(34px); }
.inner-kpis div {
  padding: 22px;
  color: var(--white);
  background: var(--green-dark);
  border-right: 1px solid rgba(255,255,255,.12);
}
.inner-kpis div:nth-child(even) { background: var(--green); }
.inner-kpis strong { display: block; color: var(--gold); font-size: 1.05rem; line-height: 1.2; }
.inner-kpis span { display: block; margin-top: 6px; color: rgba(255,255,255,.80); font-size: .88rem; line-height: 1.35; }
.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .85fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: stretch;
}
.editorial-grid > * {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.editorial-panel,
.buyer-checklist {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.editorial-panel.dark-panel {
  color: var(--white);
  background: linear-gradient(145deg, var(--green-dark), var(--green));
  border-color: rgba(255,255,255,.16);
}
.editorial-panel.dark-panel h2,
.editorial-panel.dark-panel p:not(.eyebrow) { color: var(--white); }
.detail-stack { display: grid; gap: 14px; }
.detail-stack article {
  padding: 22px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}
.detail-stack span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 900;
}
.detail-stack h3 { font-size: 1.12rem; }
.detail-stack p { margin-bottom: 0; color: var(--muted); }
.buyer-checklist h3 { margin-bottom: 14px; }
.buyer-checklist ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.buyer-checklist li {
  padding: 12px 14px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: var(--beige);
  color: var(--green-dark);
  font-weight: 800;
}

.product-detail-grid { display: grid; gap: 24px; }
.product-detail { display: grid; grid-template-columns: 320px 1fr; }
.product-detail img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; }
.product-detail div { padding: 28px; }
.product-detail h2 { padding-bottom: 14px; border-bottom: 1px solid var(--line); }
dl { display: grid; grid-template-columns: 190px 1fr; gap: 10px 18px; margin: 22px 0 0; }
dt { color: var(--green); font-weight: 800; }
dd { margin: 0; color: var(--muted); }
.industry-layout { grid-template-columns: .8fr 1.2fr; align-items: start; }
.industry-layout > img { width: 100%; border-radius: 8px; height: 100%; min-height: 520px; object-fit: cover; box-shadow: var(--shadow); }
.industry-layout .icon-grid { grid-template-columns: repeat(2, 1fr); }
.industry-matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.industry-matrix article {
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.industry-matrix p { color: var(--muted); }
.industry-matrix span {
  display: block;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--green);
  font-weight: 900;
}
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-grid span { color: var(--gold); font-size: 2rem; font-weight: 900; }
.process-grid h3 { margin-top: 8px; font-size: 1.18rem; }
.logistics-checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.logistics-checks span {
  padding: 18px;
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-weight: 900;
}
.buyer-note {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
}
.buyer-note div {
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
}
.buyer-note h2, .buyer-note p:not(.eyebrow) { color: var(--white); }
.buyer-note p:not(.eyebrow) { max-width: 850px; }
.product-sales-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-sales-grid > * {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.product-sales-grid article {
  padding: 28px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--green-dark);
}
.cta-band > * {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.cta-band h2 { color: var(--white); }
.cta-band p:not(.eyebrow) { max-width: 720px; color: rgba(255,255,255,.84); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow); }
.contact-layout { align-items: start; }
.contact-card {
  position: sticky;
  top: 100px;
  padding: 34px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(27,94,32,.98), rgba(16,59,22,.98));
  box-shadow: var(--shadow-strong);
}
.contact-card h2 { color: var(--white); }
.contact-strip { margin-top: 24px; padding: 14px; border-radius: 8px; color: #25300c; background: var(--gold); font-weight: 800; }
.contact-download { margin-top: 18px; width: 100%; }
.faq-section { background: var(--beige); }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.faq-grid details {
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}
.faq-grid summary {
  cursor: pointer;
  color: var(--green-dark);
  font-weight: 900;
}
.faq-grid p { margin-bottom: 0; color: var(--muted); }
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 8px;
  color: var(--white);
  background: #1f7a35;
  box-shadow: var(--shadow-strong);
  font-weight: 900;
}

.site-footer {
  padding: 0 clamp(20px, 5vw, 70px);
  color: rgba(255,255,255,.82);
  background: var(--green-dark);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(22px, 4vw, 54px);
  padding: 44px 0 34px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.footer-logo {
  width: 132px;
  height: 132px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 14px;
  box-shadow: 0 18px 36px rgba(0,0,0,.22);
}
.site-footer h2 { color: var(--gold); font-size: 1.45rem; }
.site-footer h3 { color: var(--white); font-size: 1rem; margin: 0 0 12px; }
.site-footer p { margin: 8px 0; }
.site-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255,255,255,.82);
}
.footer-contact {
  min-width: 0;
}
.footer-contact .contact-line {
  display: grid;
  gap: 6px;
  margin: 0 0 15px;
}
.footer-contact .contact-line strong {
  color: var(--gold);
  font-size: .92rem;
  line-height: 1.2;
}
.footer-contact .contact-line a,
.footer-contact .contact-line span {
  display: block;
  margin: 0;
  color: rgba(255,255,255,.88);
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.45;
}
.footer-bottom {
  padding: 18px 0 22px;
  color: rgba(255,255,255,.68);
  font-size: .9rem;
}

@media (max-width: 1040px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 73px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .hero-shell, .statement-section { grid-template-columns: 1fr; }
  .hero-card { max-width: 620px; }
  .card-grid.four, .icon-grid, .process-grid, .trust-strip, .footer-main, .supply-bar, .inner-kpis, .industry-matrix, .logistics-checks, .credential-grid, .product-sales-grid, .faq-grid { grid-template-columns: repeat(2, 1fr); }
  .supply-bar .rate-card { grid-column: 1 / -1; }
  .editorial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header { padding: 12px 16px; }
  .brand { min-width: 0; }
  .brand-logo { width: 42px; height: 42px; }
  .brand small { display: none; }
  .hero { min-height: auto; }
  .hero-overlay { background: linear-gradient(180deg, rgba(12,41,14,.55), rgba(12,41,14,.92)); }
  .hero-shell { padding-top: 86px; padding-bottom: 70px; }
  .hero-card-grid { grid-template-columns: 1fr; }
  .supply-bar { margin-top: 0; width: 100%; border-radius: 0; }
  .intro-grid, .split, .inquiry-section, .contact-layout, .industry-layout, .product-detail, .statement-section { grid-template-columns: 1fr; }
  .inner-kpis, .page-title + .inner-kpis { width: 100%; margin-top: 0; transform: none; border-radius: 0; }
  .metric-row, .feature-list, .form-grid, .card-grid.three, .card-grid.four, .icon-grid, .industry-layout .icon-grid, .process-grid, .gallery-grid, .trust-strip, .footer-main, .supply-bar, .inner-kpis, .industry-matrix, .logistics-checks, .credential-grid, .product-sales-grid, .faq-grid { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .product-detail img { min-height: 230px; }
  dl { grid-template-columns: 1fr; }
  .industry-layout > img { min-height: 280px; }
  .contact-card { position: static; }
  .cta-band { display: block; }
  .cta-band .btn { margin-top: 16px; width: 100%; }
  table { min-width: 620px; }
}
