:root {
  --red: #c8102e;
  --red-dark: #9f0c23;
  --red-soft: #fff0f3;
  --ink: #17191d;
  --graphite: #2c3038;
  --muted: #68707d;
  --line: #e6e8ed;
  --paper: #ffffff;
  --soft: #f6f7f9;
  --sand: #f7efe4;
  --gold: #d79b27;
  --green: #18865b;
  --shadow: 0 16px 40px rgba(21, 25, 32, 0.12);
  --shadow-soft: 0 8px 24px rgba(21, 25, 32, 0.08);
  --radius: 8px;
  --maxw: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, "Segoe UI", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  min-width: 320px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body[dir="rtl"] {
  text-align: right;
}

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

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

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

button {
  cursor: pointer;
}

.container {
  margin: 0 auto;
  max-width: var(--maxw);
  padding: 0 24px;
}

.skip-link {
  background: var(--red);
  color: #fff;
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: -60px;
  z-index: 999;
}

.skip-link:focus {
  top: 12px;
}

.topbar {
  background: var(--graphite);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
}

.topbar .container {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  min-height: 38px;
}

.topbar strong {
  color: #fff;
  font-weight: 700;
}

.topbar span {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  justify-content: flex-end;
  white-space: nowrap;
}

.email-text {
  cursor: text;
}

.topbar-links .email-text {
  color: rgba(255, 255, 255, 0.84);
}

.header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  align-items: center;
  display: flex;
  gap: 24px;
  height: 76px;
  justify-content: space-between;
}

.logo {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 10px;
  min-width: 0;
}

.logo-mark {
  align-items: center;
  background: var(--red);
  color: #fff;
  display: flex;
  font-size: 24px;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  letter-spacing: 0;
  width: 44px;
}

.logo-text {
  align-items: center;
  display: flex;
  height: 44px;
}

.logo-name {
  color: var(--ink);
  display: block;
  font-size: 24px;
  font-weight: 900;
  height: 44px;
  letter-spacing: 0;
  line-height: 44px;
  white-space: nowrap;
}

.logo-name span {
  color: var(--red);
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 26px;
}

.nav-links > a,
.nav-item > a {
  align-items: center;
  color: var(--graphite);
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  gap: 5px;
  position: relative;
}

.nav-links > a::after,
.nav-item > a::after {
  background: var(--red);
  bottom: -10px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
  width: 100%;
}

.nav-links > a:hover::after,
.nav-links > a.active::after,
.nav-item > a:hover::after,
.nav-item > a.active::after {
  transform: scaleX(1);
}

.nav-item {
  position: relative;
}

.nav-caret {
  color: var(--red);
  font-size: 11px;
  line-height: 1;
  margin-top: 2px;
}

.nav-dropdown {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  left: 50%;
  min-width: 620px;
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 20px);
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  visibility: hidden;
  z-index: 120;
}

.nav-dropdown::before {
  content: "";
  height: 22px;
  left: 0;
  position: absolute;
  right: 0;
  top: -22px;
}

.nav-dropdown a {
  background: var(--soft);
  border: 1px solid transparent;
  color: var(--graphite);
  display: grid;
  gap: 1px;
  padding: 9px 10px;
}

.nav-dropdown a::after {
  display: none;
}

.nav-dropdown strong {
  color: var(--red);
  font-size: 12px;
  line-height: 1.25;
}

.nav-dropdown span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.nav-dropdown a:hover {
  background: var(--red-soft);
  border-color: rgba(200, 16, 46, 0.22);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.dropdown-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  visibility: visible;
}

.nav-actions {
  align-items: center;
  display: flex;
  gap: 10px;
}

.lang-switch {
  position: relative;
}

.lang-btn,
.menu-toggle,
.icon-btn {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 42px;
}

.lang-btn {
  background: #fff;
  color: var(--ink);
  gap: 7px;
  padding: 0 12px;
}

.lang-code {
  background: var(--red-soft);
  color: var(--red);
  display: inline-grid;
  font-size: 12px;
  height: 24px;
  place-items: center;
  width: 30px;
}

.lang-caret {
  color: var(--muted);
  font-size: 12px;
}

.lang-menu {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: none;
  min-width: 185px;
  padding: 6px;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 20;
}

body[dir="rtl"] .lang-menu {
  left: 0;
  right: auto;
}

.lang-menu.open {
  display: grid;
}

.lang-menu button {
  background: transparent;
  border: 0;
  color: var(--graphite);
  display: flex;
  gap: 10px;
  padding: 10px;
  text-align: start;
}

.lang-menu button:hover,
.lang-menu button.active {
  background: var(--red-soft);
  color: var(--red);
}

.menu-toggle {
  background: var(--red);
  color: #fff;
  display: none;
  font-size: 22px;
  padding: 0 12px;
}

.hero {
  background:
    linear-gradient(90deg, rgba(17, 20, 27, 0.90) 0%, rgba(17, 20, 27, 0.72) 43%, rgba(17, 20, 27, 0.10) 100%),
    url("../images/homepage-hero-red-pump.png") center / cover no-repeat;
  color: #fff;
  min-height: 680px;
  overflow: hidden;
  position: relative;
}

.hero .container {
  display: grid;
  min-height: 680px;
  padding-bottom: 52px;
  padding-top: 92px;
}

.hero-content {
  align-self: center;
  max-width: 720px;
}

.eyebrow,
.kicker {
  color: var(--red);
  display: inline-block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  max-width: 100%;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.hero .eyebrow {
  background: rgba(200, 16, 46, 0.92);
  color: #fff;
  padding: 8px 12px;
}

.hero h1 {
  font-size: clamp(42px, 5.4vw, 72px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 22px 0 22px;
  max-width: 760px;
  overflow-wrap: anywhere;
}

.hero h1 em {
  color: #ffccd5;
  font-style: normal;
}

.hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  max-width: 660px;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  display: inline-flex;
  font-size: 15px;
  font-weight: 900;
  gap: 8px;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  box-shadow: 0 10px 26px rgba(200, 16, 46, 0.26);
  color: #fff;
}

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

.btn-outline {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.46);
  color: #fff;
}

.btn-light {
  background: #fff;
  border-color: var(--line);
  color: var(--red);
}

.hero-strip {
  align-self: end;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  max-width: 900px;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.10);
  padding: 16px 18px;
}

.hero-stat strong {
  color: #fff;
  display: block;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.78);
  display: block;
  font-size: 13px;
  margin-top: 6px;
}

.section {
  padding: 86px 0;
}

.section-tight {
  padding: 58px 0;
}

.bg-soft {
  background: var(--soft);
}

.bg-red {
  background: var(--red);
  color: #fff;
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 42px;
  max-width: 760px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  color: var(--ink);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
}

.bg-red .section-head h2,
.bg-red .section-head p,
.bg-red .kicker {
  color: #fff;
}

.brand-flow {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
}

.flow-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 22px;
}

.flow-card.is-primary {
  border-top: 5px solid var(--red);
}

.flow-card strong {
  color: var(--ink);
  display: block;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 8px;
}

.flow-card span {
  color: var(--muted);
  display: block;
  font-size: 14px;
}

.flow-arrow {
  align-self: center;
  color: var(--red);
  font-size: 28px;
  font-weight: 900;
}

.two-col {
  align-items: center;
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.visual-frame {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual-frame img {
  aspect-ratio: 16 / 9;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.note-band {
  background: var(--red-soft);
  border-left: 5px solid var(--red);
  color: var(--graphite);
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding: 18px 20px;
}

body[dir="rtl"] .note-band {
  border-left: 0;
  border-right: 5px solid var(--red);
}

.note-band strong {
  color: var(--red);
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.check-list li {
  color: var(--graphite);
  list-style: none;
  padding-left: 28px;
  position: relative;
}

body[dir="rtl"] .check-list li {
  padding-left: 0;
  padding-right: 28px;
}

.check-list li::before {
  color: var(--green);
  content: "✓";
  font-weight: 900;
  left: 0;
  position: absolute;
}

body[dir="rtl"] .check-list li::before {
  left: auto;
  right: 0;
}

.catalog-tools {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 24px;
}

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

.filter-btn {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--graphite);
  font-size: 14px;
  font-weight: 800;
  padding: 10px 13px;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

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

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.product-media {
  background: linear-gradient(135deg, #fff, #f0f1f4);
  min-height: 178px;
  overflow: hidden;
  position: relative;
}

.product-media img {
  height: 178px;
  object-fit: cover;
  width: 100%;
}

.product-media .model-tag {
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  left: 14px;
  padding: 6px 9px;
  position: absolute;
  top: 14px;
}

body[dir="rtl"] .product-media .model-tag {
  left: auto;
  right: 14px;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
}

.product-body h3 {
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
}

.product-body p {
  color: var(--muted);
  font-size: 15px;
}

.model-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.model-list span,
.pill {
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--graphite);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 8px;
}

.product-link {
  color: var(--red);
  font-weight: 900;
  margin-top: auto;
}

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

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
}

.service-card .num {
  color: var(--red);
  display: block;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 16px;
}

.service-card h3 {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
}

.fulfillment-intro {
  align-items: end;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  margin-bottom: 42px;
}

.fulfillment-intro .section-head {
  margin-bottom: 0;
}

.fulfillment-contacts {
  display: grid;
  gap: 10px;
}

.fulfillment-contacts a {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  padding: 14px 16px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.fulfillment-contacts .email-text {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  padding: 14px 16px;
}

.fulfillment-contacts a:hover {
  border-color: var(--red);
  color: var(--red);
}

.fulfillment-flow {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
}

.fulfillment-flow::before {
  background: var(--line);
  content: "";
  height: 2px;
  left: 8%;
  position: absolute;
  right: 8%;
  top: 27px;
}

.fulfillment-step {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  min-height: 230px;
  padding: 66px 22px 24px;
  position: relative;
}

.fulfillment-step .num {
  align-items: center;
  background: var(--red);
  color: #fff;
  display: inline-flex;
  font-size: 15px;
  font-weight: 900;
  height: 46px;
  justify-content: center;
  left: 22px;
  line-height: 1;
  position: absolute;
  top: 2px;
  width: 46px;
}

.fulfillment-step h3 {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.fulfillment-step p {
  color: var(--muted);
  font-size: 14px;
}

.region-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 28px;
}

.region-item {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 16px;
}

.region-item strong {
  display: block;
  font-size: 16px;
}

.region-item span {
  color: rgba(255, 255, 255, 0.78);
  display: block;
  font-size: 13px;
  margin-top: 3px;
}

.page-banner {
  background:
    linear-gradient(90deg, rgba(17, 20, 27, 0.88), rgba(200, 16, 46, 0.84)),
    url("../images/flutek-pump-hero.png") center / cover no-repeat;
  color: #fff;
  padding: 58px 0 108px;
}

.page-banner .container {
  max-width: 900px;
}

.page-banner .eyebrow {
  font-size: 16px;
  line-height: 1.35;
  margin-bottom: 22px;
}

.page-banner h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.12;
  margin-bottom: 24px;
  overflow-wrap: anywhere;
}

.page-banner p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.75;
  max-width: 760px;
}

.matrix {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
}

.matrix-row {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1.4fr 1fr;
}

.matrix-row > div {
  border-bottom: 1px solid var(--line);
  color: var(--graphite);
  padding: 16px;
}

.matrix-row.head > div {
  background: var(--graphite);
  color: #fff;
  font-weight: 900;
}

.matrix-row:last-child > div {
  border-bottom: 0;
}

.matrix strong {
  color: var(--ink);
}

.quote-panel {
  background: var(--graphite);
  color: #fff;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  padding: 34px;
}

.quote-panel h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
}

.quote-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.quote-list {
  display: grid;
  gap: 10px;
}

.quote-list span,
.quote-list > a:not(.btn) {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  padding: 12px 14px;
}

.quote-list > a:not(.btn):hover {
  background: rgba(255, 255, 255, 0.16);
}

.contact-wrap {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: 0.92fr 1.08fr;
}

.contact-info,
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 28px;
}

.contact-info h2,
.form-card h2 {
  font-size: 26px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.contact-item {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 5px;
  padding: 16px 0;
}

.contact-item strong {
  color: var(--ink);
}

.contact-item span,
.contact-item a {
  color: var(--muted);
}

.contact-item a:hover {
  color: var(--red);
}

.form-row {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}

.field label {
  color: var(--graphite);
  font-size: 14px;
  font-weight: 900;
}

.field input,
.field textarea,
.field select {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  min-height: 46px;
  padding: 11px 12px;
  width: 100%;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--red);
  outline: 2px solid rgba(200, 16, 46, 0.12);
}

.form-actions {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.form-actions .btn {
  width: 100%;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
  margin-top: 12px;
  text-align: center;
}

.form-status {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  min-height: 20px;
  text-align: center;
}

.form-status.is-success {
  color: #087a4a;
}

.footer {
  background: #11141b;
  color: rgba(255, 255, 255, 0.72);
  padding: 58px 0 26px;
}

.footer-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
}

.footer h3,
.footer h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 12px;
}

.footer p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.footer a {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-size: 14px;
  padding: 5px 0;
}

.footer .email-text {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-size: 14px;
  padding: 5px 0;
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  margin-top: 34px;
  padding-top: 20px;
}

.hidden {
  display: none !important;
}

@media (max-width: 1060px) {
  .nav-links {
    gap: 18px;
  }

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

  .fulfillment-intro {
    align-items: start;
    grid-template-columns: 1fr;
  }

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

  .fulfillment-flow::before {
    display: none;
  }

  .brand-flow {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

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

@media (max-width: 840px) {
  .topbar .container {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding-bottom: 9px;
    padding-top: 9px;
  }

  .topbar {
    font-size: 12px;
    line-height: 1.35;
  }

  .topbar span {
    max-width: calc(100vw - 36px);
  }

  .topbar-links {
    flex-wrap: wrap;
    gap: 6px 14px;
    white-space: normal;
  }

  .nav {
    height: 70px;
  }

  .nav-links {
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 10px 24px 18px;
    position: fixed;
    right: 0;
    top: 108px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-item {
    width: 100%;
  }

  .nav-links > a,
  .nav-item > a {
    border-bottom: 1px solid var(--line);
    justify-content: space-between;
    padding: 13px 0;
    width: 100%;
  }

  .nav-links > a::after,
  .nav-item > a::after {
    display: none;
  }

  .nav-dropdown {
    background: var(--soft);
    border: 0;
    border-left: 3px solid var(--red);
    box-shadow: none;
    gap: 0;
    grid-template-columns: 1fr;
    left: auto;
    min-width: 0;
    opacity: 1;
    padding: 6px 0 8px 12px;
    pointer-events: auto;
    position: static;
    transform: none;
    visibility: visible;
    width: 100%;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-dropdown a {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 8px 10px;
  }

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

  .nav-dropdown strong,
  .nav-dropdown span {
    font-size: 12px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero,
  .hero .container {
    min-height: 640px;
  }

  .hero .container {
    padding-top: 64px;
  }

  .hero-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col,
  .contact-wrap,
  .quote-panel {
    grid-template-columns: 1fr;
  }

  .matrix {
    border: 0;
  }

  .matrix-row,
  .matrix-row.head {
    border: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 12px;
  }

  .matrix-row.head {
    display: none;
  }

  .matrix-row > div {
    border-bottom: 1px solid var(--line);
  }

  .matrix-row > div::before {
    color: var(--red);
    content: attr(data-label);
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.7px;
    margin-bottom: 4px;
    text-transform: uppercase;
  }

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

@media (max-width: 620px) {
  .container {
    padding: 0 18px;
  }

  .logo-mark {
    height: 40px;
    width: 40px;
  }

  .logo-text {
    height: 40px;
  }

  .logo-name {
    font-size: 19px;
    height: 40px;
    line-height: 40px;
  }

  .lang-label {
    display: none;
  }

  .hero {
    background-position: 42% center;
  }

  .hero-content {
    max-width: 320px;
  }

  .hero .eyebrow {
    font-size: 12px;
    line-height: 1.35;
  }

  .hero,
  .hero .container {
    min-height: 660px;
  }

  .hero h1 {
    font-size: 32px;
  }

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

  .hero-strip,
  .product-grid,
  .service-grid,
  .fulfillment-flow,
  .region-grid,
  .footer-grid,
  .form-row,
  .form-actions {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .page-banner {
    padding: 48px 0 78px;
  }

  .page-banner .eyebrow {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .page-banner h1 {
    line-height: 1.16;
    margin-bottom: 18px;
  }

  .quote-panel {
    padding: 24px;
  }
}
