:root {
  --ink: #101614;
  --muted: #63736d;
  --line: rgba(18, 30, 25, 0.11);
  --paper: #f4f7f5;
  --white: #ffffff;
  --green: #0b8a62;
  --green-dark: #063d31;
  --copper: #c97835;
  --blue: #256a91;
  --cyan: #7cd8c4;
  --shadow: 0 24px 70px rgba(9, 25, 20, 0.13);
  --soft-shadow: 0 14px 34px rgba(12, 33, 27, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #eef4f1 0%, #f9fbfa 34%, #f2f6f4 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

.site-header {
  --header-y: 0px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.9);
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(36, 84, 76, 0.58) 36%, rgba(5, 23, 20, 0.52)),
    rgba(11, 45, 39, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08),
    0 20px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(32px) saturate(1.9) brightness(1.08);
  -webkit-backdrop-filter: blur(32px) saturate(1.9) brightness(1.08);
  transform: translateY(var(--header-y));
  transition:
    transform 0.18s cubic-bezier(0.18, 0.9, 0.2, 1),
    box-shadow 0.18s ease;
  will-change: transform;
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.site-header::before {
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.34), transparent 26%),
    radial-gradient(circle at 86% 100%, rgba(142, 242, 210, 0.28), transparent 34%),
    linear-gradient(118deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.04) 32%, rgba(255, 255, 255, 0.16) 66%, rgba(255, 255, 255, 0.03));
}

.site-header::after {
  inset: 1px;
  border-radius: 15px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent),
    rgba(3, 20, 17, 0.18);
  opacity: 0.9;
}

.site-header.is-hidden {
  --header-y: calc(-100% - 24px);
  pointer-events: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0);
}

.site-header.is-tracking {
  transition: none;
}

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

.brand,
.header-actions,
.language-toggle {
  position: relative;
  z-index: 1;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  padding: 6px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    0 10px 24px rgba(0, 0, 0, 0.22);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.brand strong {
  color: var(--white);
  font-size: 15px;
  letter-spacing: 0;
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  white-space: nowrap;
}

nav a {
  padding: 8px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
}

nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
}

nav a.is-active {
  color: #06261f;
  background: #f3fbf8;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #06261f;
  background: #f3fbf8;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.language-toggle:hover {
  background: #ffffff;
}

.mobile-language-toggle {
  display: none;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  position: relative;
  overflow: hidden;
  background: #071d18;
}

.page-view:not(.is-active) {
  display: none !important;
}

.page-view.is-active {
  display: grid !important;
}

.section.page-view.is-active {
  display: block !important;
}

.two-col.page-view.is-active,
.product-grid.page-view.is-active,
.industries.page-view.is-active,
.quote.page-view.is-active {
  display: grid !important;
}

.view-start.page-view.is-active {
  padding-top: 148px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.75), transparent 74%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 24%, rgba(124, 216, 196, 0.28), transparent 30%),
    linear-gradient(90deg, rgba(4, 17, 15, 0.91) 0%, rgba(4, 17, 15, 0.72) 45%, rgba(4, 17, 15, 0.26) 100%),
    linear-gradient(0deg, rgba(4, 17, 15, 0.92) 0%, rgba(4, 17, 15, 0.08) 48%);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8, 112, 82, 0.42), rgba(37, 106, 145, 0.2), rgba(201, 120, 53, 0.2)),
    url("/assets/hero-factory.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.04);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 22vh 0 12vh;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #a8f0dc;
  background: rgba(255, 255, 255, 0.08);
}

.hero h1 {
  margin: 18px 0 0;
  max-width: 900px;
  font-size: clamp(42px, 6.6vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 2vw, 21px);
  overflow-wrap: anywhere;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(680px, 100%);
  margin-top: 28px;
}

.hero-proof span {
  display: block;
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-proof strong,
.hero-proof small {
  display: block;
}

.hero-proof strong {
  color: #ffffff;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.hero-proof small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.button,
.quote-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover,
.quote-form button:hover {
  transform: translateY(-1px);
}

.button.primary,
.quote-form button {
  color: #06261f;
  background: linear-gradient(135deg, #8ef2d2, #f2b36f);
  box-shadow: 0 16px 38px rgba(10, 117, 85, 0.28);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: min(1160px, calc(100% - 36px));
  margin: -54px auto 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(9, 34, 28, 0.92);
  box-shadow: var(--shadow);
}

.strip a {
  min-height: 132px;
  padding: 25px clamp(18px, 3vw, 30px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.18s ease, transform 0.18s ease;
}

.strip a:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.strip a:last-child {
  border-right: 0;
}

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

.strip strong {
  color: var(--white);
  font-size: 19px;
}

.strip span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.64);
}

.supply-fit {
  background:
    linear-gradient(180deg, rgba(7, 32, 27, 0.98), rgba(12, 46, 39, 0.94)),
    #08241f;
  color: var(--white);
}

.supply-fit .section-heading {
  color: var(--white);
}

.supply-fit .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1160px, calc(100% - 36px));
  margin: 34px auto 0;
}

.fit-grid article {
  min-height: 238px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
}

.fit-grid span {
  color: #8ef2d2;
  font-size: 12px;
  font-weight: 900;
}

.fit-grid h3 {
  margin: 14px 0 10px;
  font-size: clamp(20px, 2.3vw, 28px);
  line-height: 1.25;
}

.fit-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.18;
}

.section-copy,
.section-heading p,
.product-card p,
.quality p,
.quote-copy p {
  color: var(--muted);
  font-size: 17px;
}

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

.product-card {
  position: relative;
  min-height: 222px;
  overflow: hidden;
  padding: 29px;
  border: 1px solid rgba(16, 35, 29, 0.1);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 249, 0.88));
  box-shadow: var(--soft-shadow);
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--copper));
}

.product-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -44px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(11, 138, 98, 0.14);
  border-radius: 999px;
}

.product-card h3,
.product-card p {
  position: relative;
  z-index: 1;
  overflow-wrap: anywhere;
}

.capability-section {
  width: 100%;
  padding: 96px max(18px, calc((100vw - 1160px) / 2));
  background:
    linear-gradient(135deg, #0a2a24, #12364d 58%, #17312d);
}

.capability-section .eyebrow {
  color: #8ef2d2;
}

.capability-section .section-heading h2 {
  color: var(--white);
}

.capability-section .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

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

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 17px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  text-align: left;
  vertical-align: top;
}

th {
  width: 230px;
  color: #b8f1df;
  background: rgba(255, 255, 255, 0.06);
}

td {
  color: rgba(255, 255, 255, 0.78);
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

.equipment-section {
  width: 100%;
  padding: 96px max(18px, calc((100vw - 1160px) / 2));
  background:
    radial-gradient(circle at 78% 18%, rgba(124, 216, 196, 0.2), transparent 28%),
    linear-gradient(135deg, #10211d, #143c48 62%, #0a2a24);
}

.equipment-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: start;
  margin-top: 30px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.equipment-panel h2 {
  margin: 6px 0 12px;
  color: var(--white);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.03;
}

.equipment-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.equipment-grid article {
  min-height: 128px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.09);
}

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

.equipment-grid strong {
  margin-bottom: 8px;
  color: #b8f1df;
}

.equipment-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.65;
}

.quality {
  width: min(1160px, calc(100% - 36px));
}

.quality .section-heading {
  max-width: 860px;
}

.quality .section-heading p,
.quality p {
  color: var(--muted);
}

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

.quality-grid div {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.quality-grid h3 {
  color: var(--green-dark);
}

.industries {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: start;
  padding-top: 22px;
}

.industries ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.industries li {
  position: relative;
  padding: 16px 18px 16px 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(12, 33, 27, 0.05);
}

.industries li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  transform: translateY(-50%);
  box-shadow: 0 0 0 5px rgba(11, 138, 98, 0.12);
}

.quote {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.74fr);
  gap: clamp(28px, 6vw, 70px);
  padding: 96px max(18px, calc((100vw - 1160px) / 2));
  background:
    linear-gradient(135deg, rgba(11, 138, 98, 0.1), rgba(37, 106, 145, 0.08)),
    #ffffff;
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(18, 30, 25, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.form-note {
  margin: 2px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  color: #496057;
  font-size: 13px;
  line-height: 1.55;
  background: rgba(11, 138, 98, 0.08);
}

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

.email-card {
  display: inline-grid;
  gap: 4px;
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(11, 138, 98, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 26px rgba(12, 33, 27, 0.06);
}

.email-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.email-card a {
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 900;
}

.rfq-list div {
  padding: 16px;
  border: 1px solid rgba(18, 30, 25, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

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

.rfq-list strong {
  color: var(--green-dark);
  font-size: 15px;
}

.rfq-list span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: #203c32;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cad8d2;
  border-radius: 12px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(11, 138, 98, 0.16);
  border-color: var(--green);
}

textarea {
  resize: vertical;
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  max-width: 100vw;
  min-width: 0;
  padding: 30px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.72);
  background: #061713;
  overflow: hidden;
  box-sizing: border-box;
}

.site-footer strong,
.site-footer span {
  display: block;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}

.site-footer strong {
  color: var(--white);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-width: 0;
}

.footer-brand > div {
  max-width: calc(100% - 68px);
  min-width: 0;
}

.footer-brand img {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  padding: 7px;
  object-fit: contain;
  border-radius: 14px;
  background: #ffffff;
}

@media (max-width: 920px) {
  :root {
    --mobile-gutter: clamp(16px, 4.8vw, 36px);
    --mobile-content: min(720px, calc(100vw - (var(--mobile-gutter) * 2)));
  }

  main {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .page-view.is-active {
    max-width: 100vw !important;
    overflow-x: hidden;
  }

  .site-header {
    --header-x: -50%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    left: 50%;
    right: auto;
    width: var(--mobile-content);
    max-width: 720px;
    margin: 10px 0 0;
    padding: 10px;
    transform: translateX(var(--header-x)) translateY(var(--header-y));
  }

  .site-header.is-hidden {
    --header-y: calc(-100% - 24px);
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .brand span:last-child {
    min-width: 0;
  }

  .header-actions {
    display: contents;
  }

  nav {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    box-sizing: border-box;
    justify-self: stretch;
    padding: 2px 0 4px;
    font-size: 11px;
    white-space: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  nav::-webkit-scrollbar {
    display: none;
  }

  nav a {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    min-width: max-content;
    padding: 8px 10px;
    text-align: center;
  }

  .language-toggle {
    grid-column: 2;
    grid-row: 1;
    display: inline-flex;
    min-height: 34px;
    padding: 0 14px;
    color: #06261f;
    background: #f3fbf8;
  }

  .mobile-language-toggle {
    display: none;
  }

  nav a.is-active {
    color: #ffffff;
    background: rgba(142, 242, 210, 0.16);
    box-shadow: inset 0 -2px 0 #8ef2d2;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding-top: 154px;
    width: var(--mobile-content);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
    max-width: 520px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 520px;
    margin-top: 22px;
  }

  .hero-proof span {
    display: grid;
    grid-template-columns: minmax(96px, 0.7fr) minmax(0, 1fr);
    align-items: baseline;
    gap: 12px;
    padding: 11px 13px;
  }

  .hero-proof small {
    margin-top: 0;
  }

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

  .hero-actions .button {
    box-sizing: border-box;
  }

  .strip,
  .section,
  .quality {
    width: var(--mobile-content) !important;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .capability-section {
    width: var(--mobile-content) !important;
    max-width: 720px !important;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .equipment-section {
    width: var(--mobile-content) !important;
    max-width: 720px !important;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    background: transparent;
  }

  .equipment-panel {
    padding: 22px;
    border-color: rgba(255, 255, 255, 0.18);
    background:
      radial-gradient(circle at 78% 18%, rgba(124, 216, 196, 0.18), transparent 32%),
      linear-gradient(135deg, #10211d, #143c48 62%, #0a2a24);
  }

  .equipment-panel h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .quote {
    width: var(--mobile-content) !important;
    max-width: 720px !important;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .product-card,
  .quality-grid div,
  .equipment-panel,
  .equipment-grid article,
  .industries li {
    width: 100%;
    max-width: 100%;
  }

  .strip,
  .strip a,
  .product-card,
  .quality-grid div,
  .equipment-panel,
  .equipment-grid,
  .equipment-grid article,
  .two-col > *,
  .industries > *,
  .quote > * {
    min-width: 0;
  }

  h2,
  h3,
  .lead,
  .strip a,
  .section-copy,
  .product-card p,
  .product-card h3,
  .strip span,
  .equipment-panel p,
  .equipment-grid strong,
  .equipment-grid span,
  .industries li,
  .quote-copy p {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-all;
    white-space: normal;
  }

  h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .strip,
  .product-grid,
  .quality-grid,
  .fit-grid,
  .equipment-panel {
    grid-template-columns: 1fr;
  }

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

  .strip a {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .strip a:last-child {
    border-bottom: 0;
  }

  .two-col,
  .industries,
  .quote {
    grid-template-columns: 1fr;
  }

  .industries ul {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .view-start.page-view.is-active {
    padding-top: 214px;
  }

  .capability-section,
  .equipment-section,
  .quote {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .table-wrap {
    overflow-x: visible;
  }

  table {
    min-width: 0;
  }

  table,
  tbody,
  tr,
  th,
  td {
    display: block;
    width: 100%;
  }

  tr {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  tr:last-child {
    border-bottom: 0;
  }

  th,
  td {
    padding: 4px 16px;
    border-bottom: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
  }

  th {
    background: transparent;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-brand span {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (max-width: 520px) {
  :root {
    --mobile-gutter: 18px;
    --mobile-content: calc(100vw - 36px);
  }

  .site-header {
    width: var(--mobile-content);
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    font-size: 11px;
  }

  .brand strong {
    display: block;
    max-width: 260px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  nav {
    margin-right: -4px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(28px, 9vw, 38px);
    line-height: 1.08;
    word-break: keep-all;
  }

  .hero-proof {
    gap: 8px;
  }

  .lead {
    font-size: 16px;
    max-width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .rfq-list {
    grid-template-columns: 1fr;
  }

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

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

  .strip {
    margin-top: -34px;
  }
}

@media (min-width: 700px) and (max-width: 920px) {
  .product-grid,
  .quality-grid,
  .fit-grid,
  .rfq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    align-items: start;
  }
}

@media (max-width: 360px) {
  :root {
    --mobile-gutter: 12px;
    --mobile-content: calc(100vw - 24px);
  }

  .site-header {
    padding: 8px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

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

  nav a,
  .mobile-language-toggle {
    font-size: 10px;
  }

  nav a {
    padding: 7px 9px;
  }
}
