:root {
  --ink: #151718;
  --muted: #5d6872;
  --line: #d9e0e4;
  --paper: #f4f6f3;
  --surface: #ffffff;
  --charcoal: #252a2e;
  --green: #176c58;
  --green-dark: #0f4f41;
  --red: #bd3b2f;
  --yellow: #f2b84b;
  --blue: #295a7a;
  --shadow: 0 16px 42px rgba(28, 35, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, "Segoe UI", sans-serif;
  line-height: 1.45;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.utility-bar {
  display: none;
  justify-content: center;
  gap: 0;
  padding: 8px 24px;
  color: #dbe7e2;
  background: #121617;
  font-size: 12px;
  font-weight: 800;
}

.utility-bar span {
  position: relative;
}

.utility-bar span + span::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  width: 4px;
  height: 4px;
  background: var(--yellow);
  border-radius: 50%;
  transform: translateY(-50%);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  overflow: hidden;
  background: #102b26;
  border-radius: 8px;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  content: "";
  position: absolute;
  background: #ffffff;
  border-radius: 2px;
}

.brand-mark::before {
  left: 10px;
  top: 10px;
  width: 10px;
  height: 22px;
}

.brand-mark::after {
  left: 22px;
  top: 10px;
  width: 10px;
  height: 22px;
}

.brand-mark span:first-child {
  left: 10px;
  top: 10px;
  width: 22px;
  height: 8px;
  background: var(--yellow);
}

.brand-mark span:last-child {
  left: 10px;
  bottom: 10px;
  width: 22px;
  height: 8px;
  background: #57a692;
}

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

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

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links a,
.top-contact {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--charcoal);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.top-contact:hover {
  background: #e8edea;
}

.top-contact {
  color: var(--green-dark);
  background: #e7f2ed;
}

.quote-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 400px);
  gap: 48px;
  align-items: center;
  padding: 64px clamp(20px, 5vw, 72px) 62px;
  background: #f5f7f4;
  border-bottom: 1px solid var(--line);
}

.intro-copy {
  max-width: 790px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 16px;
  font-size: 46px;
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
}

.lead {
  max-width: 640px;
  color: var(--muted);
  font-size: 17px;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 700px;
  margin-top: 24px;
}

.proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  color: #213238;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.buyer-types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 780px;
  margin: -8px 0 22px;
}

.buyer-types span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  color: #213238;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.action-row,
.resource-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.primary {
  color: #ffffff;
  background: var(--green);
}

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

.secondary {
  color: var(--charcoal);
  background: #ffffff;
  border-color: var(--line);
}

.secondary:hover {
  border-color: #9da9ad;
}

.ghost {
  color: var(--green-dark);
  background: #ecf5f0;
  border-color: #b9d7c9;
}

.hero-media {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(2, minmax(150px, 0.8fr));
  gap: 12px;
  max-width: 780px;
  margin: 22px 0 0;
}

.hero-shot {
  position: relative;
  min-height: 150px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.hero-shot-large {
  min-height: 178px;
}

.hero-shot img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.hero-shot figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 6px 8px;
  color: #ffffff;
  background: rgba(18, 22, 23, 0.78);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin: 24px 0 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.quick-stats div {
  min-height: 92px;
  padding: 18px;
  background: #ffffff;
}

.quick-stats dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-stats dd {
  margin: 8px 0 0;
  font-size: 18px;
  font-weight: 800;
}

.factory-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 780px;
  margin: 14px 0 0;
}

.factory-points span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  color: var(--green-dark);
  background: #dfece7;
  border: 1px solid #bfd8ce;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

.quote-panel {
  position: sticky;
  top: 92px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(28, 35, 40, 0.08);
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 900;
}

.panel-subcopy {
  margin: -4px 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.text-button {
  border: 0;
  color: var(--red);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.is-hidden {
  display: none !important;
}

.selected-box {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 52px;
  padding: 12px;
  margin-bottom: 16px;
  background: #f4f7f5;
  border: 1px dashed #b7c3bd;
  border-radius: 6px;
}

.selected-box.is-empty {
  display: none;
}

.empty-state {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.selected-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 6px 9px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.selected-pill button {
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: var(--red);
  line-height: 1;
  cursor: pointer;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.quote-form label {
  display: grid;
  gap: 6px;
  color: #2d3438;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 40px;
  padding: 10px 11px;
  border: 1px solid #c9d2d6;
  border-radius: 6px;
  color: var(--ink);
  background: #ffffff;
  outline: none;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(23, 108, 88, 0.14);
}

.wide {
  grid-column: 1 / -1;
}

.hidden-field {
  display: none;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: none;
}

.form-status.is-success {
  color: var(--green-dark);
}

.form-status.is-error {
  color: var(--red);
}

.commerce-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.commerce-strip div {
  min-height: 112px;
  padding: 22px clamp(16px, 2.5vw, 28px);
  background: #ffffff;
}

.commerce-strip span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.commerce-strip strong {
  display: block;
  max-width: 280px;
  font-size: 16px;
  line-height: 1.35;
}

.product-section {
  padding: 54px clamp(20px, 5vw, 72px);
  background: var(--surface);
}

.order-section {
  padding: 58px clamp(20px, 5vw, 72px);
  background: #f2f6f3;
  border-bottom: 1px solid var(--line);
}

.comparison-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.35fr);
  gap: 34px;
  padding: 54px clamp(20px, 5vw, 72px);
  background: #f8faf8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.comparison-grid div {
  min-height: 206px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.comparison-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.2;
}

.comparison-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.order-rules {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 620px;
}

.order-rules span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  color: var(--green-dark);
  background: #ffffff;
  border: 1px solid #c8ded3;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 22px;
  align-items: start;
}

.order-form,
.order-summary {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(28, 35, 40, 0.06);
}

.order-form {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.order-search {
  display: grid;
  gap: 7px;
  padding: 12px;
  border: 1px solid #d9e4de;
  border-radius: 8px;
  background: #f8faf8;
}

.order-search label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.order-search input {
  width: 100%;
  min-height: 40px;
  padding: 10px 12px;
  color: var(--ink);
  border: 1px solid #c9d2d6;
  border-radius: 7px;
  background: #ffffff;
  font: inherit;
}

.order-search input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(23, 108, 88, 0.14);
  outline: none;
}

.order-search span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.order-category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.order-category-button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  color: var(--green-dark);
  background: #f8faf8;
  border: 1px solid #c8ded3;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.order-category-button span {
  color: #637077;
  font-size: 11px;
  font-weight: 900;
}

.order-category-button.active {
  color: #ffffff;
  background: var(--green);
  border-color: var(--green);
}

.order-category-button.active span {
  color: #dbeee8;
}

.order-table {
  display: grid;
  gap: 9px;
}

.order-category-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 2px 0;
}

.order-category-title:first-child {
  padding-top: 0;
}

.order-category-title strong {
  color: var(--green-dark);
  font-size: 16px;
}

.order-category-title span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.order-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 76px 70px;
  gap: 11px;
  align-items: center;
  min-height: 104px;
  padding: 10px;
  color: #2d3438;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.order-row:hover {
  border-color: #b8cac4;
  box-shadow: 0 8px 20px rgba(28, 35, 40, 0.06);
}

.order-photo {
  display: block;
  width: 96px;
  height: 84px;
  overflow: hidden;
  border: 1px solid #dbe4df;
  border-radius: 7px;
  background: #f6f8f6;
}

.order-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 7px;
}

.order-details,
.order-price,
.order-qty {
  display: block;
}

.order-details strong,
.order-price strong,
.order-details small,
.order-details em,
.order-price small,
.order-qty small {
  display: block;
}

.order-details strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.22;
}

.order-details small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.order-details em {
  margin-top: 8px;
  color: #46525a;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.order-meta {
  display: block;
  margin-top: 3px;
  color: #6f7a81;
  font-size: 13px;
}

.order-price {
  text-align: right;
}

.order-price small,
.order-qty small {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.order-row select {
  width: 100%;
  min-height: 36px;
  padding: 7px;
  border: 1px solid #c9d2d6;
  border-radius: 6px;
  background: #ffffff;
}

.order-more,
.order-empty {
  display: grid;
  gap: 7px;
  padding: 12px;
  border: 1px dashed #b7c3bd;
  border-radius: 8px;
  background: #f8faf8;
}

.order-more strong,
.order-empty strong {
  color: var(--ink);
}

.order-more span,
.order-empty span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.order-more a,
.order-empty a {
  width: fit-content;
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

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

.buyer-fields label {
  display: grid;
  gap: 6px;
  color: #2d3438;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.buyer-fields input,
.buyer-fields textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 11px;
  border: 1px solid #c9d2d6;
  border-radius: 6px;
  color: var(--ink);
  background: #ffffff;
  outline: none;
}

.buyer-fields textarea {
  resize: vertical;
}

.buyer-fields input:focus,
.buyer-fields textarea:focus,
.order-row select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(23, 108, 88, 0.14);
}

.order-summary {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 11px;
  padding: 18px;
}

.summary-label {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-line,
.summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.summary-line span,
.summary-total span {
  color: var(--muted);
  font-weight: 800;
}

.summary-line strong,
.summary-total strong {
  font-size: 18px;
}

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

.order-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.payment-note,
.coverage-box {
  display: grid;
  gap: 5px;
  padding: 11px;
  border-radius: 8px;
  background: #edf5f0;
  border: 1px solid #c8ded3;
}

.payment-note strong,
.coverage-box strong {
  color: var(--green-dark);
}

.payment-note span,
.coverage-box span {
  color: #46525a;
  font-size: 13px;
  line-height: 1.55;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.filter {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--charcoal);
  background: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.filter.active,
.filter:hover {
  color: #ffffff;
  background: var(--charcoal);
  border-color: var(--charcoal);
}

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

.product-card {
  display: grid;
  grid-template-rows: 190px 1fr;
  min-height: 500px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.product-card:hover {
  border-color: #b9c6c3;
  box-shadow: 0 14px 30px rgba(28, 35, 40, 0.1);
  transform: translateY(-2px);
}

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

.product-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: #ffffff;
}

.product-copy {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.category {
  margin-bottom: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-copy p {
  color: var(--muted);
}

.product-copy ul {
  display: grid;
  gap: 6px;
  margin: 8px 0 22px;
  padding-left: 18px;
  color: #333b40;
}

.add-button {
  min-height: 42px;
  margin-top: auto;
  border: 1px solid var(--charcoal);
  border-radius: 6px;
  color: var(--charcoal);
  background: #ffffff;
  font-weight: 900;
  cursor: pointer;
}

.add-button:hover {
  color: #ffffff;
  background: var(--charcoal);
}

.factory-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.4fr);
  gap: 36px;
  padding: 58px clamp(20px, 5vw, 72px);
  color: #ffffff;
  background: #143d35;
}

.factory-band .eyebrow {
  color: var(--yellow);
}

.factory-copy p {
  max-width: 620px;
  margin: 16px 0 0;
  color: #d9e6e1;
}

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

.factory-grid div {
  min-height: 164px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.factory-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.factory-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.factory-grid p {
  margin: 0;
  color: #d9e6e1;
}

.sourcing-note {
  grid-column: 1 / -1;
  max-width: 980px;
  margin: 0;
  padding: 14px 16px;
  color: #d9e6e1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.6;
}

.sourcing-tags {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sourcing-tags span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  color: #143d35;
  background: #f0c66b;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

.delivery-band {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 42px;
  padding: 58px clamp(20px, 5vw, 72px);
  color: #ffffff;
  background: var(--charcoal);
}

.delivery-band .eyebrow {
  color: var(--yellow);
}

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

.step {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.step span {
  display: block;
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.step strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.step p {
  margin: 0;
  color: #d9e0e4;
}

.field-support {
  padding: 64px clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at top right, rgba(232, 185, 80, 0.22), transparent 34%),
    linear-gradient(135deg, #f6faf7 0%, #ffffff 56%, #eef5f1 100%);
  border-bottom: 1px solid var(--line);
}

.support-layout {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.support-copy,
.support-card {
  min-height: 210px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 16px 36px rgba(28, 35, 40, 0.07);
}

.support-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.support-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.support-tags span,
.support-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-tags span {
  padding: 8px 10px;
  color: var(--green);
  background: #eff7f2;
  border-radius: 999px;
}

.support-card strong {
  display: block;
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.35;
}

.price-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.price-strip div {
  padding: 18px;
  color: #ffffff;
  background: var(--charcoal);
  border-radius: 8px;
}

.price-strip span,
.price-strip strong {
  display: block;
}

.price-strip span {
  color: #cbd7d2;
  font-size: 13px;
  font-weight: 800;
}

.price-strip strong {
  margin-top: 8px;
  color: var(--yellow);
  font-size: 20px;
}

.support-note {
  max-width: 980px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.resource-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px clamp(20px, 5vw, 72px);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.resource-strip p {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--muted);
}

.catalog-library {
  padding: 54px clamp(20px, 5vw, 72px);
  background: #f8faf8;
  border-bottom: 1px solid var(--line);
}

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

.catalog-card {
  display: grid;
  gap: 8px;
  min-height: 138px;
  padding: 18px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
}

.catalog-card:hover {
  border-color: var(--green);
  box-shadow: 0 12px 28px rgba(28, 35, 40, 0.1);
}

.catalog-card span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.catalog-card strong {
  font-size: 18px;
  line-height: 1.18;
}

.catalog-card small {
  align-self: end;
  color: var(--muted);
  font-weight: 800;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: #dfe8e4;
  background: #121617;
}

.footer strong,
.footer span,
.footer a {
  display: block;
}

.footer span {
  color: #9eacb2;
  font-size: 14px;
}

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

.footer-contact a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 1100px) {
  h1 {
    font-size: 44px;
  }

  .quote-workspace,
  .order-layout,
  .factory-band,
  .delivery-band,
  .comparison-band {
    grid-template-columns: 1fr;
  }

  .quote-panel {
    position: static;
  }

  .order-summary {
    position: static;
  }

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

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

  .support-layout,
  .price-strip,
  .commerce-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-copy {
    grid-column: 1 / -1;
  }

  .hero-media {
    grid-template-columns: 1fr 1fr;
  }

  .hero-shot-large {
    grid-column: 1 / -1;
  }

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

  .comparison-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .order-row {
    grid-template-columns: 88px minmax(0, 1fr) 72px 66px;
  }

  .order-photo {
    width: 88px;
    height: 78px;
  }
}

@media (max-width: 760px) {
  h1 {
    max-width: 100%;
    font-size: 28px;
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: 28px;
  }

  .utility-bar {
    display: none;
  }

  .topbar {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 20px;
    overflow: hidden;
  }

  .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 4px;
  }

  .nav-links a {
    justify-content: flex-start;
    min-width: 0;
    padding-left: 0;
  }

  .intro-copy,
  .quote-panel,
  .lead,
  .proof-row,
  .hero-media,
  .quick-stats,
  .factory-points {
    width: 100%;
    max-width: 340px;
    min-width: 0;
  }

  .buyer-types,
  .action-row {
    width: 100%;
    max-width: 340px;
  }

  .action-row .button {
    width: auto;
  }

  .action-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .quote-workspace,
  .product-section,
  .factory-band,
  .delivery-band,
  .field-support,
  .resource-strip,
  .footer,
  .comparison-band {
    padding-left: 18px;
    padding-right: 18px;
    overflow: hidden;
  }

  .quick-stats,
  .quote-form,
  .buyer-fields,
  .product-grid,
  .hero-media,
  .factory-grid,
  .catalog-grid,
  .support-layout,
  .price-strip,
  .step-list,
  .commerce-strip,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .support-copy {
    grid-column: auto;
  }

  .hero-shot,
  .hero-shot-large {
    min-height: 180px;
  }

  .product-card {
    min-height: auto;
  }

  .section-head,
  .resource-strip,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .filters {
    justify-content: flex-start;
  }

  .order-rules {
    justify-content: flex-start;
  }

  .order-row {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
  }

  .order-photo {
    width: 100%;
    height: 150px;
  }

  .order-price {
    text-align: left;
  }
}
