@import url("/assets/fonts/fonts.css");
:root {
  --navy: #102636;
  --red: #db322f;
  --ink: #172d3b;
  --muted: #66747c;
  --line: #dce2e5;
  --paper: #f3f5f5;
  --white: #fff;
  --max: 1280px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  color: var(--ink);
  font:
    16px/1.6 "Barlow",
    Arial,
    sans-serif;
  background: white;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a,
button {
  touch-action: manipulation;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.08;
}
h1,
h2,
.display {
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 600;
}
h1 {
  font-size: clamp(2.8rem, 5.4vw, 5rem);
  letter-spacing: -0.025em;
}
h2 {
  font-size: clamp(2.3rem, 3.8vw, 3.4rem);
}
h3 {
  font-size: 1.2rem;
  font-weight: 600;
}
.wrap {
  width: min(var(--max), calc(100% - 96px));
  margin-inline: auto;
}
.skip {
  position: fixed;
  top: -80px;
  left: 20px;
  padding: 12px;
  background: white;
  z-index: 100;
}
.skip:focus {
  top: 12px;
}
:focus-visible {
  outline: 3px solid #007cb5;
  outline-offset: 4px;
}
.topbar {
  background: var(--navy);
  color: #d6e0e5;
  font-size: 0.8125rem;
}
.topbar .wrap {
  height: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.topbar a {
  color: white;
}
.top-right {
  display: flex;
  gap: 28px;
}
.header {
  position: sticky;
  top: 0;
  background: #fffffffa;
  border-bottom: 1px solid var(--line);
  z-index: 40;
}
.header-inner {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -1.5px;
  line-height: 1;
}
.brand span {
  color: var(--red);
}
.brand small {
  font-family: Arial, sans-serif;
  display: block;
  font-size: 9px;
  letter-spacing: 2.7px;
  font-weight: 400;
  margin-top: 10px;
  color: var(--muted);
}
.nav {
  display: flex;
  align-items: center;
  gap: 29px;
  font-size: 0.925rem;
  font-weight: 600;
}
.nav > a,
.nav .nav-trigger {
  padding: 33px 0;
  border-bottom: 3px solid transparent;
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--red);
}
.nav > a[aria-current="page"] {
  border-bottom-color: var(--red);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.language {
  font-size: 0.8125rem;
  white-space: nowrap;
}
.language a {
  color: var(--muted);
  padding: 4px;
}
.language a[aria-current="true"] {
  font-weight: 700;
  color: var(--ink);
}
.quote-link {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.875rem;
  font-weight: 600;
}
.badge {
  min-width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  background: var(--red);
  color: white;
  font-size: 0.75rem;
  border-radius: 50%;
}
.icon {
  width: 21px;
  height: 21px;
  display: inline-block;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.mobile-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
}
.dropdown {
  position: relative;
}
.nav-trigger {
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.dropdown-content {
  position: absolute;
  top: 100%;
  left: -22px;
  min-width: 260px;
  padding: 12px;
  background: white;
  box-shadow: 0 15px 45px #10263620;
  border: 1px solid var(--line);
  display: none;
}
.dropdown.open .dropdown-content {
  display: block;
}
.dropdown-content a {
  display: block;
  padding: 10px;
  font-size: 0.9rem;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 2.2px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow:before {
  content: "";
  height: 2px;
  width: 26px;
  background: var(--red);
}
.hero {
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 595px;
  display: flex;
  align-items: center;
}
.hero-photo {
  position: absolute;
  inset: 0 0 0 34%;
  width: 66%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.8;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #102636 0%,
    #102636f5 29%,
    #10263690 55%,
    #10263608 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 75px;
  max-width: 660px;
}
.hero h1 {
  max-width: 650px;
}
.hero h1 em {
  font-style: normal;
  color: #ff5b4f;
}
.hero p {
  color: #c4d0d8;
  font-size: 1.0625rem;
  max-width: 495px;
  margin-top: 24px;
  line-height: 1.75;
}
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 15px 24px;
  background: var(--red);
  color: white;
  border: 1px solid var(--red);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  min-height: 50px;
  transition:
    background 0.15s,
    transform 0.15s;
}
.btn:hover {
  background: #bb2827;
  border-color: #bb2827;
}
.btn .icon {
  width: 18px;
}
.btn-outline {
  background: transparent;
  border-color: #ffffff70;
}
.btn-outline:hover {
  background: #ffffff16;
  border-color: white;
}
.btn-light {
  background: white;
  color: var(--ink);
  border-color: var(--line);
}
.btn-light:hover {
  background: var(--paper);
  border-color: #9cabb4;
}
.btn-dark {
  background: var(--navy);
  border-color: var(--navy);
}
.btn-dark:hover {
  background: #23465b;
  border-color: #23465b;
}
.hero-index {
  position: absolute;
  right: 48px;
  bottom: 30px;
  z-index: 2;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #d5dde3;
  border-top: 1px solid #ffffff50;
  padding-top: 12px;
}
.trust-strip {
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 27px 24px;
  border-right: 1px solid var(--line);
}
.trust-item:first-child {
  padding-left: 0;
}
.trust-item:last-child {
  border: 0;
}
.trust-item > .icon {
  color: var(--red);
  width: 29px;
  height: 29px;
  flex-shrink: 0;
}
.trust-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
}
.trust-item small {
  font-size: 0.8rem;
  color: var(--muted);
}
.section {
  padding-block: 86px;
}
.section-soft {
  background: var(--paper);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 35px;
}
.section-head .eyebrow {
  margin-bottom: 12px;
}
.section-head p {
  max-width: 420px;
  color: var(--muted);
}
.text-link {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
}
.text-link:hover {
  color: var(--red);
  border-color: var(--red);
}
.categories-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.category-card {
  background: var(--paper);
  border: 1px solid transparent;
  position: relative;
  padding: 20px 22px 23px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.category-card:hover {
  border-color: #acb8c0;
  transform: translateY(-3px);
}
.category-card img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  mix-blend-mode: multiply;
  margin: 4px 0 20px;
}
.category-card .num {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 1px;
}
.category-card h3 {
  font-size: 1.1rem;
  margin: 8px 25px 7px 0;
}
.category-card small {
  color: var(--muted);
  font-size: 0.8125rem;
}
.category-card .arrow {
  position: absolute;
  right: 21px;
  bottom: 25px;
}
.catalog-banner {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  color: white;
  overflow: hidden;
}
.catalog-visual {
  background: #203847;
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 30px;
}
.catalog-visual img {
  height: 275px;
  width: auto;
  box-shadow: 10px 16px 25px #0005;
  transform: rotate(-6deg);
}
.catalog-copy {
  padding: 45px 55px;
}
.catalog-copy h2 {
  font-size: 2.65rem;
}
.catalog-copy p {
  color: #c4d0d8;
  margin-top: 16px;
}
.catalog-copy .eyebrow {
  color: #bcc8cf;
}
.expertise {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.expertise p {
  color: var(--muted);
  margin: 22px 0;
}
.expertise-photo {
  height: 390px;
  width: 100%;
  object-fit: cover;
}
.stats {
  display: flex;
  gap: 45px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  margin-top: 30px;
}
.stats strong {
  font-family: "Barlow Condensed", Arial, sans-serif;
  display: block;
  font-size: 2.5rem;
  color: var(--red);
  line-height: 1;
}
.stats small {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 10px;
}
.cta {
  background: var(--red);
  color: white;
  padding: 45px 0;
}
.cta .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}
.cta h2 {
  font-size: 2.6rem;
}
.cta p {
  margin-top: 10px;
  color: #ffe0db;
}
.footer {
  background: var(--navy);
  color: #bcc8cf;
  padding-top: 65px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 55px;
}
.footer .brand {
  color: white;
}
.footer .brand small {
  color: #b5c1c9;
}
.footer p {
  font-size: 0.875rem;
  margin-top: 25px;
  max-width: 265px;
}
.footer h3 {
  font-size: 0.875rem;
  color: white;
  margin-bottom: 20px;
}
.footer a:not(.brand) {
  display: block;
  font-size: 0.875rem;
  margin: 8px 0;
}
.footer a:hover {
  color: white;
}
.footer-bottom {
  border-top: 1px solid #ffffff20;
  padding: 21px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.75rem;
}
.footer-bottom a {
  font-size: inherit !important;
  margin: 0 !important;
}
.page-heading {
  background: var(--paper);
  padding: 38px 0 45px;
  border-bottom: 1px solid var(--line);
}
.breadcrumbs {
  font-size: 0.8125rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.breadcrumbs span {
  color: #a2aab0;
}
.page-heading h1 {
  font-size: 3.5rem;
}
.page-heading p {
  margin-top: 14px;
  color: var(--muted);
  max-width: 670px;
}
.catalog-layout {
  display: grid;
  grid-template-columns: 235px minmax(0, 1fr);
  gap: 42px;
  padding-block: 45px 85px;
}
.filters h2 {
  font-family: inherit;
  font-size: 0.8125rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.category-filter {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border: 0;
  border-bottom: 1px solid var(--line);
  width: 100%;
  text-align: left;
  background: white;
  color: var(--muted);
  font-size: 0.875rem;
}
.category-filter:hover {
  color: var(--red);
}
.category-filter.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.category-filter small {
  font-size: 0.75rem;
  opacity: 0.7;
}
.filter-box {
  margin-top: 30px;
  background: var(--paper);
  padding: 22px;
}
.filter-box h3 {
  font-size: 1rem;
  line-height: 1.35;
}
.filter-box p {
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 13px 0;
}
.filter-box a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--red);
}
.search-row {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}
.search {
  position: relative;
  flex: 1;
}
.search > .icon {
  position: absolute;
  left: 16px;
  top: 16px;
  color: var(--muted);
}
.search input {
  padding: 13px 16px 13px 48px;
  width: 100%;
  height: 54px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 0;
}
.search-row select {
  border: 1px solid var(--line);
  background: white;
  padding: 10px 14px;
  max-width: 210px;
}
.results-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.8125rem;
  margin-bottom: 22px;
  min-height: 26px;
}
.clear-filters {
  border: 0;
  background: none;
  color: var(--red);
  text-decoration: underline;
  font-size: 0.8125rem;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.product-card {
  border: 1px solid var(--line);
  background: white;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.product-card:hover {
  border-color: #aab8c0;
  box-shadow: 0 8px 24px #10263609;
}
.product-image {
  position: relative;
  background: #f9faf9;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 210px;
  padding: 22px;
  overflow: hidden;
}
.product-image img {
  max-height: 170px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.2s;
}
.product-card:hover img {
  transform: scale(1.04);
}
.product-brand {
  position: absolute;
  top: 12px;
  left: 14px;
  font-size: 0.65rem;
  letter-spacing: 1.4px;
  color: #64767f;
  font-weight: 700;
}
.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-info .category-label {
  font-size: 0.7rem;
  color: var(--red);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.product-info h3 {
  font-size: 1.04rem;
  line-height: 1.35;
  margin-bottom: 8px;
}
.product-info p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.card-foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-size: 0.75rem;
  font-weight: 600;
}
.card-foot .icon {
  width: 17px;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 35px;
}
.pagination button {
  background: white;
  border: 1px solid var(--line);
  min-width: 42px;
  height: 42px;
}
.pagination button.active {
  background: var(--navy);
  color: white;
}
.empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 70px 20px;
  background: var(--paper);
}
.empty h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
.empty p {
  color: var(--muted);
  margin-bottom: 22px;
}
.product-detail {
  padding-block: 32px 75px;
}
.product-top {
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  gap: 70px;
  margin-top: 30px;
}
.detail-image {
  background: #f6f7f6;
  border: 1px solid var(--line);
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  position: relative;
}
.detail-image img {
  max-height: 370px;
  width: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.detail-image .product-brand {
  font-size: 0.8rem;
  top: 22px;
  left: 24px;
}
.product-summary h1 {
  font-size: 3.2rem;
  margin: 12px 0 20px;
}
.product-summary p {
  color: var(--muted);
}
.product-summary .eyebrow {
  margin-bottom: 10px;
}
.variant-select {
  display: block;
  width: 100%;
  padding: 13px;
  background: white;
  border: 1px solid #b9c4ca;
  margin: 8px 0 14px;
  font-size: 0.9rem;
}
.field-label {
  font-size: 0.8125rem;
  font-weight: 600;
  display: block;
  margin-top: 24px;
}
.variant-facts {
  font-size: 0.8125rem;
  color: var(--muted);
}
.variant-facts strong {
  color: var(--ink);
}
.purchase-row {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.quantity {
  width: 78px;
  border: 1px solid var(--line);
  text-align: center;
  padding: 12px;
}
.purchase-row .btn {
  flex: 1;
}
.small-note {
  font-size: 0.8125rem !important;
  margin-top: 15px;
}
.technical-link {
  margin-top: 27px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
}
.technical-link a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}
.technical-link small {
  font-size: 0.75rem;
  display: block;
  color: var(--muted);
  padding-left: 33px;
  margin-top: 5px;
}
.detail-sections {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 65px;
}
.detail-sections h2 {
  font-size: 2rem;
  margin-bottom: 23px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  padding: 10px 0 10px 22px;
  position: relative;
  border-bottom: 1px solid var(--line);
  font-size: 0.925rem;
}
.feature-list li:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--red);
  top: 21px;
  left: 0;
}
.table-wrap {
  overflow: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}
th {
  text-align: left;
  background: var(--navy);
  color: white;
  font-weight: 500;
}
td,
th {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
}
td:first-child {
  font-weight: 600;
}
tbody tr:nth-child(even) {
  background: var(--paper);
}
.technical-preview {
  margin-top: 45px;
  background: var(--paper);
  padding: 30px;
}
.technical-preview summary {
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}
.technical-preview img {
  margin-top: 25px;
  width: 100%;
  height: auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 7px;
  font-weight: 500;
}
.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #bfc9ce;
  padding: 13px;
  background: white;
  border-radius: 0;
}
.form-field textarea {
  min-height: 140px;
  resize: vertical;
}
.form-field.full,
.form-full {
  grid-column: 1/-1;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--muted);
}
.consent input {
  margin-top: 6px;
}
.form-status {
  font-size: 0.875rem;
  padding: 14px;
  margin-top: 15px;
  border-left: 3px solid var(--red);
  background: var(--paper);
}
.form-status:empty {
  display: none;
}
.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.2fr;
  gap: 95px;
}
.contact-details h2 {
  font-size: 2.8rem;
  margin-bottom: 22px;
}
.contact-details > p {
  color: var(--muted);
  margin-bottom: 35px;
}
.contact-item {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.contact-item small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.contact-item a {
  font-size: 1.15rem;
  font-weight: 500;
}
.contact-map {
  width: 100%;
  height: 340px;
  border: 0;
  filter: grayscale(0.4);
  margin-top: 55px;
}
.quote-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  padding-block: 50px 85px;
}
.quote-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 75px 30px;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.quote-item img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  background: var(--paper);
  padding: 6px;
}
.quote-item h3 {
  font-size: 0.9375rem;
  line-height: 1.4;
}
.quote-item small {
  font-size: 0.75rem;
  color: var(--muted);
  overflow-wrap: anywhere;
}
.remove-item {
  border: 0;
  background: none;
  color: var(--muted);
  padding: 6px;
}
.quote-panel {
  padding: 30px;
  background: var(--paper);
}
.quote-panel h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
.quote-panel > p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 25px;
}
.quote-summary {
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}
.quote-aside .small-note {
  color: var(--muted);
}
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--navy);
  color: white;
  padding: 17px 25px;
  z-index: 100;
  box-shadow: 0 10px 40px #0003;
  max-width: calc(100% - 32px);
  display: none;
}
.toast.visible {
  display: block;
}
.about-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-intro p {
  color: var(--muted);
  margin-top: 24px;
}
.about-intro img {
  height: 450px;
  width: 100%;
  object-fit: cover;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.value {
  border-top: 1px solid #adb9c0;
  padding-top: 25px;
}
.value > span {
  color: var(--red);
  font-size: 0.875rem;
}
.value h3 {
  font-size: 1.125rem;
  margin: 23px 0 15px;
  line-height: 1.35;
}
.value p {
  color: var(--muted);
  font-size: 0.9rem;
}
.founder {
  padding: 45px;
  border-left: 4px solid var(--red);
  background: var(--paper);
  max-width: 960px;
  margin: auto;
}
.founder blockquote {
  font-size: 1.35rem;
  line-height: 1.65;
  margin: 0 0 25px;
}
.founder small {
  display: block;
  color: var(--muted);
}
.solution-tabs {
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 35px;
  flex-wrap: wrap;
}
.solution-tabs a {
  padding: 14px 22px;
  font-size: 0.875rem;
}
.solution-tabs a.active {
  background: var(--navy);
  color: white;
}
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.solution-card {
  border: 1px solid var(--line);
}
.solution-card img {
  width: 100%;
  height: 265px;
  object-fit: cover;
}
.solution-body {
  padding: 30px;
}
.solution-body h2 {
  font-family: inherit;
  font-size: 1.3rem;
  line-height: 1.3;
}
.solution-body p {
  color: var(--muted);
  margin: 17px 0 24px;
}
.prose {
  max-width: 820px;
}
.prose h2 {
  font-size: 2rem;
  margin: 32px 0 16px;
}
.prose p {
  margin: 16px 0;
  color: var(--muted);
}
.no-image {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 2rem;
  color: #7a8d97;
  text-align: center;
  overflow-wrap: anywhere;
}
.no-image small {
  display: block;
  font:
    12px "Barlow",
    Arial,
    sans-serif;
  letter-spacing: 0.7px;
  margin-top: 15px;
}
.source-note {
  font-size: 0.8rem;
  color: var(--muted);
  padding: 15px 0;
}
.error-page {
  text-align: center;
  padding: 100px 20px;
}
.error-page p {
  margin: 20px auto;
  max-width: 450px;
  color: var(--muted);
}
@media (min-width: 1500px) {
  .hero {
    min-height: 660px;
  }
  .hero h1 {
    font-size: 5.5rem;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .nav {
    gap: 18px;
  }
  .header-inner {
    gap: 20px;
  }
  .header-actions {
    gap: 14px;
  }
  .quote-link > span:not(.badge) {
    display: none;
  }
  .trust-item {
    padding: 22px 12px;
  }
  .expertise {
    gap: 40px;
  }
  .catalog-layout {
    grid-template-columns: 205px minmax(0, 1fr);
    gap: 25px;
  }
  .product-grid {
    gap: 14px;
  }
  .product-info {
    padding: 15px;
  }
  .product-top {
    gap: 35px;
  }
  .footer-grid {
    gap: 30px;
  }
  .contact-layout {
    gap: 45px;
  }
}
@media (max-width: 800px) {
  .topbar .top-right > a:first-child {
    display: none;
  }
  .header-inner {
    height: 76px;
  }
  .brand {
    font-size: 1.7rem;
  }
  .brand small {
    font-size: 8px;
    letter-spacing: 2px;
  }
  .mobile-toggle {
    display: block;
  }
  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--line);
    padding: 15px 24px;
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
  }
  .nav.is-open {
    display: block;
  }
  .nav > a,
  .nav .nav-trigger {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px;
    border: 0;
  }
  .dropdown-content {
    position: static;
    box-shadow: none;
    border: 0;
    padding: 0 12px;
    display: block;
  }
  .dropdown-content a {
    font-weight: 400;
  }
  .header-actions {
    margin-left: auto;
  }
  .hero {
    min-height: 560px;
  }
  .hero-photo {
    left: 20%;
    width: 80%;
    opacity: 0.55;
  }
  .hero:after {
    background: linear-gradient(90deg, #102636f5, #102636aa 50%, #10263630);
  }
  .hero-content {
    max-width: 560px;
    padding-block: 65px;
  }
  .hero h1 {
    font-size: 4.1rem;
  }
  .hero p {
    max-width: 440px;
  }
  .hero-index {
    display: none;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-item {
    padding: 20px !important;
  }
  .trust-item:nth-child(2) {
    border: 0;
  }
  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .section {
    padding-block: 60px;
  }
  .categories-home {
    grid-template-columns: 1fr 1fr;
  }
  .section-head {
    align-items: start;
  }
  .section-head p {
    max-width: 280px;
  }
  .catalog-copy {
    padding: 35px;
  }
  .catalog-copy h2 {
    font-size: 2.2rem;
  }
  .expertise {
    gap: 30px;
  }
  .expertise-photo {
    height: 350px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .catalog-layout {
    grid-template-columns: 1fr;
  }
  .filters {
    display: grid;
    grid-template-columns: 1fr;
  }
  .filters h2 {
    margin-bottom: 12px;
  }
  .category-list {
    display: flex;
    overflow-x: auto;
    gap: 6px;
    padding-bottom: 6px;
  }
  .category-filter {
    width: auto;
    flex-shrink: 0;
    border: 1px solid var(--line);
    max-width: 250px;
    align-items: center;
  }
  .filter-box {
    display: none;
  }
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .product-image {
    height: 185px;
  }
  .product-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .detail-image {
    min-height: 350px;
    padding: 25px;
  }
  .product-summary h1 {
    font-size: 2.5rem;
  }
  .detail-sections {
    gap: 30px;
  }
  .quote-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .quote-panel {
    padding: 25px;
  }
  .about-intro {
    gap: 35px;
  }
  .about-intro img {
    height: 400px;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .solution-body {
    padding: 23px;
  }
  .solution-card img {
    height: 220px;
  }
}
@media (max-width: 560px) {
  .wrap {
    width: calc(100% - 36px);
  }
  .topbar .wrap {
    font-size: 0.6875rem;
    height: 30px;
  }
  .top-right {
    display: none;
  }
  .header-inner {
    gap: 10px;
  }
  .header-actions {
    gap: 8px;
  }
  .brand {
    font-size: 1.5rem;
  }
  .brand small {
    font-size: 7px;
    letter-spacing: 1.8px;
  }
  .language {
    font-size: 0.75rem;
  }
  .quote-link {
    gap: 4px;
  }
  .quote-link .icon {
    width: 20px;
  }
  .mobile-toggle {
    padding: 6px;
  }
  .hero {
    min-height: 570px;
    align-items: start;
  }
  .hero-photo {
    left: 0;
    width: 100%;
    opacity: 0.43;
    object-position: 63%;
  }
  .hero-content {
    padding-block: 55px;
  }
  .hero h1 {
    font-size: 3.5rem;
    max-width: 350px;
  }
  .hero p {
    font-size: 1rem;
    max-width: 325px;
  }
  .eyebrow {
    font-size: 0.6875rem;
    letter-spacing: 1.7px;
  }
  .hero .actions {
    gap: 10px;
  }
  .hero .btn {
    padding: 14px 16px;
    gap: 14px;
    font-size: 0.8rem;
  }
  .trust-item {
    gap: 10px;
    padding: 16px 8px !important;
  }
  .trust-item > .icon {
    width: 23px;
    height: 23px;
  }
  .trust-item strong {
    font-size: 0.8rem;
  }
  .trust-item small {
    font-size: 0.7rem;
  }
  .section-head {
    display: block;
  }
  .section-head .text-link {
    margin-top: 20px;
  }
  .section-head p {
    margin-top: 18px;
    max-width: none;
  }
  .categories-home {
    gap: 10px;
  }
  .category-card {
    padding: 14px;
  }
  .category-card img {
    height: 135px;
    margin-bottom: 15px;
  }
  .category-card h3 {
    font-size: 0.95rem;
    line-height: 1.3;
  }
  .category-card .arrow {
    right: 12px;
    bottom: 20px;
  }
  .category-card small {
    font-size: 0.75rem;
  }
  .catalog-banner {
    grid-template-columns: 1fr;
  }
  .catalog-visual {
    min-height: 240px;
  }
  .catalog-visual img {
    height: 205px;
  }
  .catalog-copy {
    padding: 30px;
  }
  .expertise {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .expertise-photo {
    height: 280px;
  }
  .stats {
    gap: 35px;
  }
  .cta .wrap {
    display: block;
  }
  .cta h2 {
    font-size: 2.25rem;
  }
  .cta .btn {
    margin-top: 25px;
  }
  .footer {
    padding-top: 45px;
  }
  .footer-grid {
    gap: 30px 20px;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
  .page-heading {
    padding: 26px 0 32px;
  }
  .page-heading h1 {
    font-size: 2.8rem;
  }
  .breadcrumbs {
    font-size: 0.75rem;
    margin-bottom: 20px;
  }
  .catalog-layout {
    padding-top: 25px;
    gap: 20px;
  }
  .search-row {
    flex-wrap: wrap;
  }
  .search {
    flex-basis: 100%;
  }
  .search-row select {
    width: 100%;
    max-width: none;
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .product-image {
    height: 155px;
    padding: 17px;
  }
  .product-info {
    padding: 13px;
  }
  .product-info h3 {
    font-size: 0.925rem;
  }
  .product-info .category-label {
    font-size: 0.65rem;
    line-height: 1.4;
  }
  .product-info p {
    font-size: 0.75rem;
  }
  .card-foot {
    font-size: 0.7rem;
  }
  .product-brand {
    font-size: 0.6rem;
  }
  .product-top {
    grid-template-columns: 1fr;
  }
  .detail-image {
    min-height: 315px;
  }
  .detail-image img {
    max-height: 260px;
  }
  .product-summary h1 {
    font-size: 2.8rem;
  }
  .detail-sections {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .technical-preview {
    padding: 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-field.full,
  .form-full {
    grid-column: auto;
  }
  .quote-item {
    grid-template-columns: 55px minmax(0, 1fr) 60px 24px;
    gap: 10px;
  }
  .quote-item img {
    width: 55px;
    height: 60px;
  }
  .quote-item h3 {
    font-size: 0.8125rem;
  }
  .quote-item .quantity {
    width: 60px;
    padding: 8px;
  }
  .quote-panel {
    padding: 22px 18px;
  }
  .about-intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-intro img {
    height: 300px;
  }
  .values-grid {
    gap: 30px 20px;
  }
  .founder {
    padding: 28px;
  }
  .founder blockquote {
    font-size: 1.1rem;
  }
  .solution-grid {
    grid-template-columns: 1fr;
  }
  .solution-tabs a {
    padding: 12px;
    font-size: 0.8rem;
  }
  .solution-card img {
    height: 240px;
  }
  .toast {
    right: 16px;
    bottom: 16px;
  }
  .no-image {
    font-size: 1.4rem;
  }
  .no-image small {
    font-size: 0.65rem;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
[hidden] {
  display: none !important;
}
.brand > img {
  width: 210px;
  height: auto;
}
.home-products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.dropdown.open .dropdown-content {
  display: block;
}
button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.email-fallback {
  margin-top: 16px;
}
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.spec {
  background: var(--paper);
  padding: 12px 16px;
}
.spec small {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}
.spec strong {
  font-size: 1rem;
}
.sheet-type {
  font-size: 0.7rem;
  color: var(--muted);
}
@media (max-width: 1100px) {
  .brand > img {
    width: 180px;
  }
}
@media (max-width: 800px) {
  .home-products {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .brand > img {
    width: 145px;
  }
}
.photo-caption {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 12px;
  font-size: 0.6875rem;
  color: var(--muted);
  text-align: center;
}
.product-info .category-label,
.product-brand,
.card-foot,
.product-info p {
  font-size: max(0.75rem, 12px);
}
@media (max-width: 360px) {
  .brand > img { width: 120px; }
  .header-actions { gap: 6px; }
}
.hero-photo {
  object-position: center;
}
.footer .brand {
  letter-spacing: -1px;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
  }
}
