:root {
  --ink: #14211e;
  --muted: #60716b;
  --line: #dce6df;
  --paper: #f4f7f2;
  --white: #ffffff;
  --green: #0b6f4d;
  --green-dark: #07392f;
  --navy: #17384a;
  --mint: #e8f4ea;
  --lime: #b9dd54;
  --amber: #e0a22a;
  --copper: #b98137;
  --steel: #28556a;
  --shadow: 0 22px 60px rgba(9, 35, 29, 0.15);
  --soft-shadow: 0 12px 38px rgba(9, 35, 29, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f8faf5 0%, var(--paper) 34%, #eef3ed 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 14px 42px;
  color: var(--white);
  background: rgba(4, 22, 18, 0.44);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(15px);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(6, 38, 30, 0.95);
  box-shadow: 0 12px 34px rgba(4, 20, 16, 0.2);
}

.brand,
.main-nav,
.header-actions,
.hero-actions,
.trust-strip,
.contact-panel,
.footer-links,
.catalog-tabs,
.system-steps {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #11170d;
  background: linear-gradient(135deg, var(--lime), #f1d66b);
  border-radius: 6px;
  font-weight: 900;
}

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

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

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

.main-nav {
  gap: 24px;
  font-size: 14px;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.84);
}

.main-nav a:hover {
  color: var(--white);
}

.header-actions {
  justify-self: end;
  gap: 10px;
}

.whatsapp-cta,
.header-cta {
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 850;
}

.whatsapp-cta {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.header-cta {
  color: #11170d;
  background: var(--lime);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 17, 15, 0.94) 0%, rgba(6, 35, 29, 0.78) 46%, rgba(11, 43, 51, 0.26) 100%),
    linear-gradient(0deg, rgba(4, 17, 15, 0.88) 0%, rgba(4, 17, 15, 0) 50%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 56px;
  width: min(1180px, calc(100% - 48px));
  min-height: 92vh;
  margin: 0 auto;
  padding: 132px 0 118px;
  align-items: center;
}

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

.eyebrow.dark {
  color: var(--green);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.hero-actions {
  gap: 14px;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-proof span {
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 820;
}

.hero-mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin-top: 18px;
}

.hero-mini-metrics div {
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.hero-mini-metrics strong,
.hero-mini-metrics span {
  display: block;
}

.hero-mini-metrics strong {
  color: var(--lime);
  font-size: 24px;
  line-height: 1;
}

.hero-mini-metrics span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 780;
}

.primary-button,
.secondary-button,
.inquiry-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 850;
}

.primary-button,
.inquiry-form button {
  color: #10170b;
  background: var(--lime);
}

.secondary-button {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.46);
}

.hero-panel {
  padding: 24px;
  background: rgba(7, 35, 29, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.panel-top {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.panel-top span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-top strong {
  display: block;
  margin-top: 4px;
  color: var(--lime);
  font-size: 42px;
  line-height: 1;
}

.panel-top small {
  display: block;
  max-width: 310px;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

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

.panel-grid div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.panel-grid b,
.panel-grid span {
  display: block;
}

.panel-grid b {
  margin-bottom: 4px;
}

.panel-grid span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.panel-checklist {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.panel-checklist span {
  padding: 11px 12px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--lime);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.trust-strip {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  width: min(1180px, calc(100% - 48px));
  transform: translateX(-50%);
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.trust-strip span {
  flex: 1;
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(6, 31, 25, 0.72);
  font-size: 13px;
  font-weight: 780;
  text-align: center;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 48px));
  position: relative;
  z-index: 4;
  margin: -34px auto 0;
  background: var(--line);
  border: 1px solid rgba(220, 230, 223, 0.9);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.metrics div {
  padding: 26px 24px;
  background: var(--white);
}

.metrics strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green-dark);
  font-size: 28px;
}

.metrics span {
  color: var(--muted);
  font-size: 14px;
}

.buyer-route {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 30px;
  padding: 76px 0 28px;
  align-items: start;
}

.buyer-route-head {
  position: sticky;
  top: 96px;
}

.buyer-route-head p:not(.eyebrow),
.route-grid p,
.route-grid b,
.rfq-grid p,
.quality-copy p,
.quality-grid span,
.export-note-list span {
  color: var(--muted);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.route-grid article {
  min-height: 250px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.route-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  color: var(--green-dark);
  background: linear-gradient(135deg, var(--lime), #e7c965);
  border-radius: 6px;
  font-weight: 900;
}

.route-grid p {
  min-height: 84px;
}

.route-grid b {
  display: block;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.section,
.buyer-route,
.positioning-section,
.rfq-section,
.pricing-section,
.spec-band,
.visual-system,
.factory-section,
.oem-section,
.quality-section,
.export-section,
.faq-section,
.quote-strip,
.inquiry {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 92px 0 70px;
}

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

.section-heading p:not(.eyebrow),
.intro-copy p,
.intro-points p,
.catalog-card p,
.spec-copy p,
.system-copy p,
.application-grid p,
.factory-copy p,
.process-list span,
.export-copy p,
.export-grid span,
.faq-grid p,
.inquiry-copy p,
.form-note {
  color: var(--muted);
}

.section-heading.compact {
  margin-bottom: 24px;
}

.intro-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 36px;
  align-items: start;
}

.intro-points {
  display: grid;
  gap: 14px;
}

.intro-points article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.intro-points span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--green-dark);
  background: var(--mint);
  border-radius: 6px;
  font-weight: 900;
}

.intro-points p {
  margin-bottom: 0;
}

.positioning-section {
  padding: 84px 0 64px;
}

.positioning-hero {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 34px;
  padding: 38px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 57, 47, 0.98), rgba(23, 56, 74, 0.96)),
    var(--green-dark);
  border-radius: 8px;
  box-shadow: var(--shadow);
  align-items: stretch;
}

.positioning-copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
}

.positioning-copy h2 {
  max-width: 780px;
  margin-bottom: 18px;
}

.positioning-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.positioning-badges span {
  padding: 9px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 820;
}

.positioning-board {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.board-title span,
.board-title strong {
  display: block;
}

.board-title span {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.board-title strong {
  color: var(--lime);
  font-size: 30px;
  line-height: 1.08;
}

.board-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.board-metrics div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 6px;
}

.board-metrics b,
.board-metrics span {
  display: block;
}

.board-metrics b {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 20px;
}

.board-metrics span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.positioning-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.positioning-grid article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.positioning-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--green-dark);
  background: var(--mint);
  border-radius: 6px;
  font-weight: 900;
}

.positioning-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.catalog-section {
  padding-top: 36px;
}

.catalog-tabs {
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.catalog-tabs button {
  min-height: 40px;
  padding: 9px 14px;
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.catalog-tabs button.is-active {
  color: #10170b;
  background: var(--lime);
  border-color: var(--lime);
}

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

.catalog-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.catalog-card:hover,
.sku-card:hover,
.price-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(9, 35, 29, 0.12);
}

.catalog-card.is-hidden {
  display: none;
}

.catalog-card img {
  height: 232px;
  object-fit: cover;
  background: #f2f6ef;
}

.catalog-card > div {
  padding: 24px;
}

.catalog-feature {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 0.86fr;
}

.catalog-feature img {
  height: 100%;
  min-height: 438px;
}

.product-kicker {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.catalog-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.catalog-card li::marker {
  color: var(--amber);
}

.featured-section {
  padding-top: 28px;
}

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

.sku-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.sku-card img {
  height: 190px;
  object-fit: cover;
  background: #f2f6ef;
}

.sku-card div {
  padding: 18px;
}

.sku-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
  font-size: 12px;
  font-weight: 880;
  text-transform: uppercase;
}

.sku-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.sku-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.model-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  margin-top: 16px;
  padding: 9px 13px;
  color: var(--green-dark);
  background: #f8faf6;
  border: 1px solid #cbd8d0;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 880;
}

.model-link:hover {
  color: #10170b;
  background: var(--lime);
  border-color: var(--lime);
}

.rfq-section {
  padding: 36px 0 82px;
}

.rfq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.rfq-grid article {
  padding: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faf4 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.rfq-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 9px;
  color: #10170b;
  background: var(--lime);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.rfq-grid h3 {
  font-size: 19px;
}

.rfq-grid p {
  margin-bottom: 0;
  font-size: 14px;
}

.pricing-section {
  padding: 84px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.pricing-head p:not(.eyebrow),
.pricing-note {
  color: var(--muted);
}

.pricing-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.pricing-summary span {
  display: block;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
}

.pricing-summary strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green-dark);
  font-size: 22px;
}

.pricing-tools {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 210px 210px auto;
  gap: 12px;
  margin-bottom: 14px;
}

.pricing-tools input,
.pricing-tools select,
.reset-filters {
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cbd8d0;
  border-radius: 6px;
  font: inherit;
}

.reset-filters {
  min-width: 86px;
  color: var(--green-dark);
  cursor: pointer;
  font-weight: 850;
}

.reset-filters:hover {
  background: var(--mint);
}

.pricing-status {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin: 0 0 18px;
  padding: 12px 14px;
  color: var(--muted);
  background: rgba(232, 244, 234, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
}

.pricing-status span:first-child {
  color: var(--green-dark);
  font-weight: 820;
}

.pricing-commerce {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 24px;
  align-items: start;
}

.price-card-wrap {
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

.price-card-list {
  display: grid;
  gap: 16px;
}

.product-list-controls {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.product-list-controls[hidden],
.product-list-controls button[hidden] {
  display: none;
}

.product-list-controls span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 780;
}

.product-list-controls > div {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.product-list-controls button {
  min-height: 42px;
  padding: 9px 14px;
  color: var(--green-dark);
  background: var(--mint);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.product-list-controls button:first-child {
  color: #10170b;
  background: var(--lime);
  border-color: var(--lime);
}

.price-product-card {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 190px;
  gap: 18px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.price-product-card:nth-child(odd) {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcf8 100%);
}

.price-product-media {
  display: grid;
  place-items: center;
  min-height: 170px;
  background: #f8faf6;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-product-media img {
  width: 100%;
  height: 170px;
  object-fit: contain;
}

.price-product-main {
  min-width: 0;
  overflow: hidden;
}

.price-product-title span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 6px 9px;
  color: var(--green-dark);
  background: var(--mint);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 850;
}

.price-product-title h3 {
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 19px;
  line-height: 1.18;
}

.price-spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 10px;
}

.price-spec-grid div {
  padding: 10px;
  background: #f8faf6;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.price-spec-grid b,
.price-spec-grid span {
  display: block;
}

.price-spec-grid b {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.price-spec-grid span {
  color: var(--ink);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.price-product-feature {
  display: -webkit-box;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.price-product-action {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 14px;
  background: linear-gradient(180deg, rgba(185, 221, 84, 0.18), rgba(232, 244, 234, 0.82));
  border: 1px solid rgba(185, 221, 84, 0.44);
  border-radius: 8px;
}

.price-product-action > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.price-product-action strong {
  color: var(--green-dark);
  font-size: 26px;
  line-height: 1;
}

.price-product-action label {
  display: grid;
  gap: 6px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
}

.price-table-wrap {
  max-height: 680px;
  overflow: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(9, 35, 29, 0.08);
}

.price-table {
  width: 100%;
  min-width: 1220px;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 14px 15px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-size: 14px;
}

.price-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: var(--green-dark);
  background: #eef6ed;
  font-size: 12px;
  text-transform: uppercase;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.price-table td:first-child {
  width: 132px;
}

.price-table td:nth-child(2) {
  max-width: 260px;
  color: var(--green-dark);
  font-weight: 820;
}

.price-table td:nth-child(8) {
  color: #11170d;
  background: rgba(185, 221, 84, 0.18);
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}

.price-thumb {
  width: 112px;
  height: 82px;
  object-fit: contain;
  background: #f8faf6;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.quote-qty {
  width: 70px;
  min-height: 38px;
  padding: 8px;
  color: var(--ink);
  border: 1px solid #cbd8d0;
  border-radius: 6px;
  font: inherit;
}

.add-cart-button,
.cart-actions button,
.cart-line-actions button {
  min-height: 38px;
  padding: 8px 12px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.add-cart-button {
  white-space: nowrap;
}

.add-cart-button,
.cart-actions button:first-child {
  color: #10170b;
  background: var(--lime);
}

.cart-actions button:last-child,
.cart-line-actions button {
  color: var(--green-dark);
  background: var(--mint);
}

.quote-cart {
  position: sticky;
  top: 92px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--lime);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(9, 35, 29, 0.1);
}

.quote-cart::before {
  content: "B2B inquiry list";
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 9px;
  color: var(--green-dark);
  background: var(--mint);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.cart-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.cart-head h3,
.cart-head p {
  margin-bottom: 0;
}

.cart-head > span {
  padding: 7px 10px;
  color: var(--green-dark);
  background: var(--mint);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.cart-items {
  display: grid;
  gap: 12px;
  max-height: none;
  overflow: visible;
}

.cart-empty,
.cart-note {
  color: var(--muted);
  font-size: 13px;
}

.cart-line {
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 14px;
  padding: 14px;
  background: #f8faf6;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart-line img {
  width: 124px;
  height: 92px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.cart-line h4 {
  margin: 0 0 7px;
  color: var(--green-dark);
  font-size: 15px;
  line-height: 1.2;
}

.cart-line p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
}

.cart-specs {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 8px;
  margin: 0 0 12px;
  font-size: 12px;
}

.cart-specs dt {
  color: var(--muted);
}

.cart-specs dd {
  margin: 0;
  color: var(--ink);
}

.cart-line-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.cart-line-actions label {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
}

.cart-line-actions input {
  width: 86px;
  min-height: 40px;
  padding: 8px 10px;
  color: var(--ink);
  border: 1px solid #cbd8d0;
  border-radius: 6px;
  font: inherit;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  margin-top: 14px;
  border-top: 1px solid var(--line);
}

.cart-total span {
  color: var(--muted);
  font-size: 14px;
}

.cart-total strong {
  color: var(--green-dark);
  font-size: 24px;
}

.cart-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.cart-note {
  margin: 12px 0 0;
}

.pricing-note {
  margin: 14px 0 0;
  font-size: 13px;
}

dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
  margin: 18px 0 0;
  font-size: 14px;
}

dt {
  color: var(--green);
  font-weight: 850;
}

dd {
  margin: 0;
}

.spec-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  padding: 78px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spec-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(9, 35, 29, 0.07);
}

.spec-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  padding: 16px 17px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.spec-table th {
  color: var(--green-dark);
  background: #edf4eb;
  font-size: 13px;
  text-transform: uppercase;
}

.spec-table td {
  font-size: 14px;
}

.spec-table tr:last-child td {
  border-bottom: 0;
}

.visual-system {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 36px;
  padding: 86px 0 40px;
  align-items: center;
}

.system-image img {
  height: 480px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.system-steps {
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.system-steps span {
  padding: 10px 12px;
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 850;
}

.use-range-section {
  padding-top: 60px;
}

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

.application-grid article,
.faq-grid details,
.inquiry-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.application-grid img {
  height: 225px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.application-grid h3,
.application-grid p {
  padding-inline: 22px;
}

.application-grid h3 {
  margin-top: 22px;
}

.application-grid p {
  padding-bottom: 22px;
}

.factory-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 36px;
  padding: 90px 0;
  align-items: center;
}

.factory-media img {
  height: 510px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.process-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.process-list div {
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--copper);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(9, 35, 29, 0.06);
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list strong {
  margin-bottom: 5px;
  color: var(--green-dark);
}

.process-list span {
  font-size: 14px;
}

.factory-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.factory-proof-grid article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(9, 35, 29, 0.06);
}

.factory-proof-grid img {
  height: 104px;
  object-fit: cover;
}

.factory-proof-grid strong,
.factory-proof-grid span {
  display: block;
  padding-inline: 12px;
}

.factory-proof-grid strong {
  padding-top: 11px;
  color: var(--green-dark);
  font-size: 13px;
}

.factory-proof-grid span {
  padding-bottom: 13px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.38;
}

.oem-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 36px;
  padding: 10px 0 78px;
  align-items: center;
}

.oem-gallery {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 12px;
  align-items: stretch;
}

.oem-gallery img {
  height: 480px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.oem-gallery img:last-child {
  height: 380px;
  align-self: end;
}

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

.oem-grid article {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.oem-grid strong,
.oem-grid span {
  display: block;
}

.oem-grid strong {
  margin-bottom: 6px;
  color: var(--green-dark);
}

.oem-grid span {
  color: var(--muted);
  font-size: 14px;
}

.quality-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 36px;
  padding: 18px 0 82px;
  align-items: center;
}

.quality-media img {
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quality-media-stack {
  display: grid;
  gap: 12px;
}

.quality-media-stack .quality-main {
  height: 390px;
}

.quality-thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.quality-thumbs img {
  height: 168px;
  box-shadow: 0 12px 34px rgba(9, 35, 29, 0.1);
}

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

.quality-grid article {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--steel);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(9, 35, 29, 0.06);
}

.quality-grid strong,
.quality-grid span {
  display: block;
}

.quality-grid strong {
  margin-bottom: 6px;
  color: var(--green-dark);
}

.quality-grid span {
  font-size: 14px;
}

.export-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  padding: 70px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.export-note-list {
  display: grid;
  gap: 9px;
  margin-top: 20px;
}

.export-note-list span {
  padding: 11px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--amber);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 780;
}

.export-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.export-grid article {
  padding: 20px;
  color: var(--white);
  background: linear-gradient(145deg, var(--green-dark), var(--navy));
  border-radius: 8px;
}

.export-grid strong,
.export-grid span {
  display: block;
}

.export-grid strong {
  margin-bottom: 6px;
  color: var(--lime);
}

.export-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.faq-section {
  padding: 82px 0 40px;
}

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

.faq-grid details {
  padding: 20px;
}

.faq-grid summary {
  color: var(--green-dark);
  cursor: pointer;
  font-weight: 850;
}

.faq-grid p {
  margin: 12px 0 0;
}

.quote-strip {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 57, 47, 0.96), rgba(40, 85, 106, 0.92)),
    var(--green-dark);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-strip .eyebrow {
  color: var(--lime);
}

.quote-strip h2 {
  max-width: 760px;
  margin-bottom: 8px;
  font-size: clamp(28px, 3vw, 40px);
}

.quote-strip p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.quote-strip .primary-button {
  flex: 0 0 auto;
}

.inquiry {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  padding: 70px 0 98px;
  align-items: start;
}

.contact-panel {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.contact-panel a {
  padding: 10px 12px;
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 850;
}

.inquiry-form {
  display: grid;
  gap: 15px;
  padding: 24px;
  box-shadow: 0 14px 40px rgba(9, 35, 29, 0.08);
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 850;
}

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

.inquiry-form textarea {
  resize: vertical;
}

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

.form-note {
  margin: 0;
  font-size: 14px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 42px;
  color: var(--white);
  background: var(--green-dark);
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.84);
}

.floating-quote {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  color: #10170b;
  background: var(--lime);
  border-radius: 6px;
  box-shadow: 0 12px 34px rgba(9, 35, 29, 0.18);
  font-weight: 900;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 12px 18px;
  }

  .main-nav {
    display: none;
  }

  .hero-inner,
  .intro-section,
  .buyer-route,
  .positioning-hero,
  .positioning-grid,
  .catalog-grid,
  .sku-grid,
  .rfq-grid,
  .pricing-head,
  .pricing-commerce,
  .spec-band,
  .visual-system,
  .factory-section,
  .oem-section,
  .quality-section,
  .export-section,
  .inquiry {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: 0;
    padding: 112px 0 30px;
    align-content: center;
  }

  .hero-panel {
    max-width: 520px;
  }

  .buyer-route-head {
    position: static;
  }

  .trust-strip {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    display: grid;
    grid-template-columns: 1fr;
    margin: 0 auto 24px;
  }

  .metrics,
  .route-grid,
  .application-grid,
  .faq-grid,
  .quality-grid,
  .pricing-summary,
  .export-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-feature {
    display: block;
    grid-column: span 1;
  }

  .catalog-feature img,
  .factory-media img,
  .system-image img,
  .quality-media img,
  .oem-gallery img,
  .oem-gallery img:last-child {
    min-height: 0;
    height: 350px;
  }

  .quality-media-stack .quality-main {
    height: 350px;
  }

  .quality-thumbs img {
    height: 220px;
  }

  .quote-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .quote-cart {
    position: static;
  }

  .price-product-card {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .price-product-action {
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto auto;
    align-items: end;
  }
}

@media (max-width: 1240px) and (min-width: 1041px) {
  .price-product-card {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .price-product-action {
    grid-column: 1 / -1;
    grid-template-columns: minmax(150px, 1fr) 150px 180px;
    align-items: end;
  }
}

@media (max-width: 680px) {
  .brand small {
    display: none;
  }

  .brand strong {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .whatsapp-cta {
    padding: 9px 12px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .hero-inner,
  .trust-strip,
  .metrics,
  .section,
  .buyer-route,
  .positioning-section,
  .rfq-section,
  .pricing-section,
  .spec-band,
  .visual-system,
  .factory-section,
  .oem-section,
  .quality-section,
  .export-section,
  .faq-section,
  .quote-strip,
  .inquiry {
    width: calc(100% - 32px);
  }

  .hero-copy {
    font-size: 17px;
  }

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

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .panel-grid,
  .hero-mini-metrics,
  .board-metrics,
  .metrics,
  .intro-points article,
  .route-grid,
  .positioning-grid,
  .sku-grid,
  .rfq-grid,
  .pricing-summary,
  .pricing-tools,
  .application-grid,
  .faq-grid,
  .factory-proof-grid,
  .quality-grid,
  .quality-thumbs,
  .export-grid,
  .oem-grid,
  .oem-gallery {
    grid-template-columns: 1fr;
  }

  .intro-points article {
    gap: 12px;
  }

  .route-grid p {
    min-height: 0;
  }

  .catalog-card img,
  .application-grid img,
  .catalog-feature img,
  .factory-media img,
  .factory-proof-grid img,
  .system-image img,
  .quality-media img,
  .sku-card img,
  .oem-gallery img,
  .oem-gallery img:last-child {
    height: 260px;
  }

  .quality-media-stack .quality-main {
    height: 260px;
  }

  .quality-thumbs img {
    height: 220px;
  }

  .catalog-card > div,
  .positioning-hero,
  .route-grid article,
  .rfq-grid article,
  .quote-strip,
  .quote-cart,
  .inquiry-form {
    padding: 20px;
  }

  .cart-actions {
    grid-template-columns: 1fr;
  }

  .pricing-status {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-list-controls,
  .product-list-controls > div {
    align-items: stretch;
    flex-direction: column;
  }

  .price-product-card,
  .price-product-action,
  .price-spec-grid {
    grid-template-columns: 1fr;
  }

  .price-product-media img {
    height: 220px;
  }

  .cart-line {
    grid-template-columns: 1fr;
  }

  .cart-line img {
    width: 100%;
    height: 180px;
  }

  .site-footer {
    flex-direction: column;
    padding: 28px 18px;
  }

  .floating-quote {
    left: 16px;
    right: 16px;
  }
}
