:root {
  --ink: #16202a;
  --muted: #607080;
  --line: #d9e1e8;
  --paper: #f6f8fa;
  --white: #ffffff;
  --green: #17684f;
  --green-dark: #0f4b3a;
  --blue: #245c7a;
  --amber: #d59b31;
  --shadow: 0 20px 45px rgba(22, 32, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 12px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  font-weight: 700;
}

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

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

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  flex: 1;
  color: #344452;
  font-size: 14px;
}

.nav a:hover,
.header-action:hover {
  color: var(--green);
}

.header-action {
  padding: 10px 14px;
  color: var(--green-dark);
  border: 1px solid rgba(23, 104, 79, 0.28);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
}

.language-switcher label {
  color: #607080;
  font-size: 12px;
  font-weight: 700;
}

.language-switcher select {
  min-height: 38px;
  max-width: 178px;
  padding: 8px 30px 8px 10px;
  color: #263541;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
}

#google_translate_element,
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget,
.skiptranslate iframe,
iframe.goog-te-banner-frame,
body > .skiptranslate {
  display: none !important;
  height: 0 !important;
  visibility: hidden !important;
}

body {
  top: 0 !important;
  position: static !important;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #0f1e22;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(10, 20, 24, 0.88) 0%, rgba(10, 20, 24, 0.6) 42%, rgba(10, 20, 24, 0.18) 100%),
    linear-gradient(0deg, rgba(10, 20, 24, 0.86) 0%, rgba(10, 20, 24, 0) 44%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  position: relative;
  max-width: 780px;
  padding: 120px clamp(20px, 6vw, 72px) 96px;
  color: var(--white);
}

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

.hero h1,
.section-heading h2,
.feature-copy h2,
.contact-copy h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(42px, 6vw, 76px);
}

.hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--green);
}

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

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
}

.button.ghost:hover {
  border-color: var(--white);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-band div {
  min-height: 118px;
  padding: 26px clamp(18px, 3vw, 36px);
  background: var(--white);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  font-size: 22px;
}

.trust-band span {
  margin-top: 6px;
  color: var(--muted);
}

.section {
  padding: 82px clamp(18px, 5vw, 64px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

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

.section-heading h2,
.feature-copy h2,
.contact-copy h2 {
  font-size: clamp(32px, 4vw, 52px);
}

.section-heading p:not(.eyebrow),
.contact-copy p,
.feature-copy span {
  color: var(--muted);
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 14px 0 0;
  font-size: 17px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-button {
  min-height: 38px;
  padding: 9px 14px;
  color: #384957;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

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

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(22, 32, 42, 0.06);
}

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

.product-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: contain;
  padding: 20px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

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

.product-card.text-only .product-body {
  padding-top: 24px;
  border-top: 5px solid var(--green);
  background:
    linear-gradient(180deg, rgba(23, 104, 79, 0.06), rgba(255, 255, 255, 0) 82px),
    var(--white);
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.product-topline span {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-topline small {
  color: var(--muted);
  font-weight: 700;
}

.product-card h3 {
  min-height: 54px;
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.product-card p {
  min-height: 72px;
  margin: 10px 0 18px;
  color: var(--muted);
}

.product-card dl {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
}

.product-card dl div {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid #edf1f4;
}

.product-card dt {
  color: #718190;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-card dd {
  margin: 0;
  color: #263541;
  font-weight: 700;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  align-items: center;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-image {
  height: 100%;
  min-height: 560px;
  background: #e9eef2;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-copy {
  padding: 64px clamp(24px, 5vw, 72px);
}

.application-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.application-list div {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

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

.application-list strong {
  margin-bottom: 6px;
  font-size: 18px;
}

.specs-section {
  background: #eef3f1;
}

.table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

th,
td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  color: #33424f;
  background: #f8fafb;
  font-size: 13px;
  text-transform: uppercase;
}

td {
  color: #344452;
}

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

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  gap: clamp(26px, 5vw, 72px);
  padding: 82px clamp(18px, 5vw, 64px);
  background: var(--ink);
  color: var(--white);
}

.contact-copy p {
  max-width: 620px;
  font-size: 17px;
}

.contact-copy ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.contact-copy li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-copy li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--amber);
  border-radius: 50%;
}

.rfq-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.rfq-form label {
  display: grid;
  gap: 7px;
  color: #394958;
  font-size: 13px;
  font-weight: 700;
}

.rfq-form input,
.rfq-form select,
.rfq-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--ink);
  background: #f9fbfc;
  border: 1px solid #cbd6df;
  border-radius: 6px;
  font: inherit;
}

.rfq-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: #718190;
  font-size: 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 5vw, 64px);
  color: #607080;
  background: var(--white);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

@media (max-width: 960px) {
  .site-header {
    flex-wrap: wrap;
  }

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

  .header-action {
    margin-left: auto;
  }

  .language-switcher {
    margin-left: auto;
  }

  .hero {
    min-height: 620px;
  }

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

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

  .feature-image {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 14px;
    padding: 12px 16px;
  }

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

  .header-action {
    padding: 9px 10px;
    font-size: 13px;
  }

  .language-switcher {
    order: 2;
    margin-left: auto;
  }

  .language-switcher label {
    display: none;
  }

  .language-switcher select {
    max-width: 138px;
  }

  .hero {
    min-height: 590px;
  }

  .hero-copy {
    padding: 92px 18px 64px;
  }

  .hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions .button {
    flex: 1 1 150px;
  }

  .trust-band,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .trust-band div {
    min-height: auto;
    padding: 20px 18px;
  }

  .section,
  .contact-section {
    padding: 58px 18px;
  }

  .feature-copy {
    padding: 50px 18px;
  }

  .feature-image {
    min-height: 320px;
  }

  .product-card h3,
  .product-card p {
    min-height: 0;
  }

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