:root {
  --brand-blue: #168fcd;
  --brand-blue-dark: #075985;
  --brand-yellow: #f4c542;
  --ink: #101828;
  --muted: #5b667a;
  --line: #d9e2ee;
  --panel: #f6f9fc;
  --white: #ffffff;
  --black: #07111d;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

html[dir="rtl"] body {
  font-family: Tahoma, Arial, "Segoe UI", sans-serif;
}

html[dir="rtl"] .topbar-inner,
html[dir="rtl"] .nav-inner,
html[dir="rtl"] .section-inner,
html[dir="rtl"] .nav-links,
html[dir="rtl"] .brand,
html[dir="rtl"] .mega-product,
html[dir="rtl"] .rfq-actions,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .actions {
  direction: rtl;
}

html[dir="rtl"] .list li {
  padding-left: 0;
  padding-right: 22px;
}

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

html[dir="rtl"] .quote {
  border-left: 0;
  border-right: 4px solid var(--brand-yellow);
  padding-left: 0;
  padding-right: 18px;
}

html[dir="rtl"] .spec-table th,
html[dir="rtl"] .spec-table td,
html[dir="rtl"] .article-table th,
html[dir="rtl"] .article-table td {
  text-align: right;
}

html[dir="rtl"] .inquiry-points li {
  padding-left: 0;
  padding-right: 24px;
}

html[dir="rtl"] .inquiry-points li::before {
  left: auto;
  right: 0;
}

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

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

.topbar {
  background: var(--black);
  color: #d8e8f7;
  font-size: 13px;
}

.topbar-inner,
.nav-inner,
.section-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: 0;
  font-size: 22px;
  line-height: 1;
}

.brand-logo-only {
  width: fit-content;
  padding: 8px 14px 8px 12px;
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 248, 250, 0.72)),
    radial-gradient(circle at 18% 20%, rgba(0, 130, 150, 0.08), transparent 44%);
  box-shadow:
    0 12px 30px rgba(7, 54, 89, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}

.brand img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.brand-logo-only img {
  width: min(292px, 27vw);
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.brand span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.25;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 15px;
  font-weight: 650;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid #dbe6f0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.language-switcher button {
  min-width: 34px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #45556c;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.language-switcher button.active {
  background: var(--black);
  color: var(--brand-yellow);
}

.nav-links a {
  color: #233247;
}

.nav-links a:hover {
  color: var(--brand-blue-dark);
}

.nav-item {
  display: flex;
  align-items: center;
}

.nav-trigger {
  border: 0;
  background: transparent;
  color: #233247;
  font: inherit;
  font-weight: 750;
  padding: 10px 0;
  cursor: pointer;
}

.nav-trigger::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.nav-trigger:hover,
.nav-trigger:focus-visible {
  color: var(--brand-blue-dark);
  outline: 0;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  width: min(980px, calc(100vw - 32px));
  transform: translateX(-50%) translateY(8px);
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 0.95fr;
  gap: 12px;
  padding: 14px;
  border: 1px solid #dbe6f0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(7, 17, 29, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.mega-menu.zenner-menu {
  width: min(1180px, calc(100vw - 24px));
  grid-template-columns: 1.15fr repeat(4, minmax(0, 1fr));
}

.mega-menu.solution-menu {
  width: min(780px, calc(100vw - 32px));
  grid-template-columns: 1.05fr 1fr 1fr;
}

.mega-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

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

.mega-panel {
  min-height: 100%;
  padding: 18px;
  border-radius: 6px;
  background: #ffffff;
}

.mega-feature {
  color: var(--white);
  background: linear-gradient(145deg, #075985, #07111d);
}

.mega-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--brand-yellow);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.mega-panel h3 {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.mega-panel p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.mega-feature p {
  color: #d9e8f8;
}

.mega-link {
  display: grid;
  gap: 3px;
  padding: 10px 0;
  border-top: 1px solid rgba(16, 24, 40, 0.1);
}

.mega-link:first-of-type {
  border-top: 0;
}

.mega-link strong {
  color: #162338;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.mega-link span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.mega-link:hover strong {
  color: var(--brand-blue-dark);
}

.mega-product {
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #e4edf5;
  background: #f8fbfd;
}

.mega-product img {
  width: 126px;
  height: 150px;
  object-fit: contain;
  border-radius: 6px;
  background: #ffffff;
}

.mega-product strong {
  display: block;
  margin-bottom: 4px;
  color: #162338;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.mega-product span span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 750;
  cursor: pointer;
}

.btn.primary {
  background: var(--brand-yellow);
  color: #1f2937;
}

.btn.dark {
  background: var(--brand-blue-dark);
  color: var(--white);
}

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

.btn.outline {
  border-color: var(--line);
  background: var(--white);
  color: var(--brand-blue-dark);
}

.hero {
  background: linear-gradient(110deg, rgba(7, 17, 29, 0.92), rgba(7, 89, 133, 0.82)), url("assets/catalog-previews/cover-01.png") center / cover;
  color: var(--white);
}

.hero .section-inner {
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 48px;
  align-items: center;
  padding: 72px 0 64px;
}

.eyebrow {
  color: var(--brand-yellow);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  max-width: 880px;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
}

h3 {
  font-size: 21px;
}

p {
  margin: 0 0 18px;
}

.lead {
  font-size: 20px;
  color: #d8e8f7;
  max-width: 720px;
}

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

.hero-panel {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.hero-panel img {
  border-radius: 6px;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  background: var(--white);
  transform: scale(1.68);
  transform-origin: center;
}

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

.metric {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px;
  background: var(--panel);
}

.metric strong {
  display: block;
  color: var(--brand-blue-dark);
  font-size: 22px;
}

section {
  padding: 78px 0;
}

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

.section-head p {
  max-width: 640px;
  color: var(--muted);
}

.band {
  background: var(--panel);
}

.dark-band {
  background: var(--black);
  color: var(--white);
}

.dark-band p,
.dark-band .muted {
  color: #bfd2e6;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.card-body {
  padding: 22px;
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 13;
  object-fit: cover;
  object-position: top;
  border-bottom: 1px solid var(--line);
}

.card img.product-image {
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  padding: 0;
  transform: scale(1.5);
  transform-origin: center;
  overflow: hidden;
}

.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  background: #e7f4fb;
  color: var(--brand-blue-dark);
  font-size: 12px;
  font-weight: 750;
  margin-bottom: 12px;
}

.muted {
  color: var(--muted);
}

.list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 22px;
}

.list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-yellow);
  position: absolute;
  left: 0;
  top: 9px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 42px;
  align-items: center;
}

.founder {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.quote {
  border-left: 4px solid var(--brand-yellow);
  padding-left: 18px;
  font-size: 20px;
  color: #233247;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.spec-table th,
.spec-table td {
  text-align: left;
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
  vertical-align: top;
}

.spec-table th {
  background: #eef6fb;
  color: var(--brand-blue-dark);
}

.cta {
  background: linear-gradient(120deg, var(--brand-blue-dark), #0f749f);
  color: var(--white);
}

.cta .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.form {
  display: grid;
  gap: 14px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  font: inherit;
  background: var(--white);
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

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

.notice {
  display: none;
  border-radius: 6px;
  background: #e8f7ef;
  color: #126237;
  padding: 12px 14px;
  font-weight: 700;
}

.notice.show {
  display: block;
}

.inquiry-hero {
  min-height: calc(100vh - 120px);
  padding: 84px 0;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(5, 8, 13, 0.96), rgba(7, 17, 29, 0.88)),
    radial-gradient(circle at 82% 18%, rgba(244, 197, 66, 0.2), transparent 34%),
    radial-gradient(circle at 18% 70%, rgba(22, 143, 205, 0.18), transparent 38%);
}

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 44px;
  align-items: center;
}

.inquiry-copy h1 {
  font-size: clamp(42px, 6vw, 68px);
}

.inquiry-points {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: #d9e8f8;
}

.inquiry-points li {
  padding-left: 24px;
  position: relative;
}

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

.rfq-card {
  border: 1px solid rgba(244, 197, 66, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.rfq-card-head {
  padding: 26px 28px 10px;
}

.rfq-card-head h2 {
  font-size: 30px;
}

.rfq-card-head p {
  color: var(--muted);
}

.required-star {
  color: #d97706;
  font-weight: 900;
}

.rfq-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 10px 28px 28px;
}

.form-field {
  display: grid;
  gap: 7px;
}

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

.form-field label {
  color: #172033;
  font-size: 14px;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d8e1ec;
  border-radius: 6px;
  padding: 12px 14px;
  background: #f9fbfd;
  color: var(--ink);
  font: inherit;
  outline: 0;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--brand-yellow);
  box-shadow: 0 0 0 3px rgba(244, 197, 66, 0.18);
  background: #ffffff;
}

.field-error,
.field-hint {
  min-height: 18px;
  font-size: 12px;
}

.field-error {
  display: none;
  color: #b42318;
}

.field-hint {
  color: var(--muted);
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: #dc2626;
  background: #fff8f8;
}

.form-field.has-error .field-error,
.consent-line.has-error .field-error {
  display: block;
}

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 650;
}

.checkbox-line input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--brand-yellow);
}

.spam-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.rfq-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 4px;
}

.rfq-submit {
  min-width: 180px;
  border: 0;
}

.rfq-status {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
}

.rfq-status.success {
  color: #11843b;
}

.rfq-status.error {
  color: #b42318;
}

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

.code-template {
  margin: 28px 0 0;
  padding: 22px;
  overflow: auto;
  border-radius: 8px;
  background: #07111d;
  color: #d9e8f8;
  font-size: 14px;
}

.blog-card img.product-image {
  height: auto;
  min-height: 220px;
}

.blog-article-hero {
  padding: 72px 0;
  color: var(--white);
  background: linear-gradient(115deg, rgba(7, 17, 29, 0.96), rgba(7, 89, 133, 0.88));
}

.blog-article-hero p {
  max-width: 820px;
  color: #d8e8f7;
  font-size: 18px;
}

.blog-article-section {
  padding-top: 58px;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 42px;
  align-items: start;
}

.article-content {
  max-width: 820px;
}

.article-content h1 {
  display: none;
}

.article-content h2 {
  margin-top: 42px;
  font-size: 30px;
}

.article-content h3 {
  margin-top: 28px;
  font-size: 21px;
}

.article-content p,
.article-content li {
  color: #344054;
  font-size: 17px;
}

.article-content ul,
.article-content ol {
  padding-left: 24px;
}

.article-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  background: var(--white);
}

.article-table th,
.article-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-table th {
  background: #eef6fb;
  color: var(--brand-blue-dark);
}

.article-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 16px;
}

.sidebar-box {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(7, 17, 29, 0.08);
}

.sidebar-box h3 {
  font-size: 18px;
}

.map-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(217, 226, 238, 0.9);
  border-radius: 8px;
  background: linear-gradient(135deg, #eaf3f8, #ffffff);
  box-shadow: 0 26px 80px rgba(7, 17, 29, 0.14);
}

.map-frame {
  position: absolute;
  inset: 0;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.95) contrast(1.05);
}

.map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(7, 17, 29, 0.48), rgba(7, 17, 29, 0.08) 46%, rgba(255, 255, 255, 0));
}

.map-overlay {
  position: relative;
  z-index: 1;
  width: min(360px, calc(100% - 32px));
  margin: 28px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 60px rgba(7, 17, 29, 0.2);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.map-overlay p {
  color: var(--muted);
}

.footer {
  background: #050b12;
  color: #c8d7e8;
  padding: 52px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 28px;
}

.footer h3 {
  color: var(--white);
  font-size: 16px;
}

.footer a {
  display: block;
  margin: 8px 0;
  color: #c8d7e8;
}

.page-hero {
  background: linear-gradient(110deg, rgba(7, 17, 29, 0.92), rgba(7, 89, 133, 0.82));
  color: var(--white);
  padding: 76px 0;
}

.page-hero p {
  max-width: 760px;
  color: #d8e8f7;
  font-size: 19px;
}

.breadcrumb {
  font-size: 13px;
  color: #b9d3ed;
  margin-bottom: 14px;
}

.keyword-map {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.keyword-map div {
  background: var(--white);
  padding: 14px;
}

.keyword-map .head {
  background: #eef6fb;
  color: var(--brand-blue-dark);
  font-weight: 800;
}

@media (max-width: 900px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 0;
  }

  .nav-inner {
    align-items: flex-start;
    grid-template-columns: 1fr;
    padding: 14px 0;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .nav-item {
    width: 100%;
    display: block;
  }

  .mega-menu {
    position: static;
    width: 100%;
    transform: none;
    grid-template-columns: 1fr 1fr;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin-top: 8px;
  }

  .mega-menu.zenner-menu,
  .mega-menu.solution-menu {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .mega-product {
    grid-template-columns: 110px 1fr;
  }

  .mega-product img {
    width: 110px;
    height: 122px;
  }

  .hero .section-inner,
  .inquiry-layout,
  .article-shell,
  .split,
  .cta .section-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .grid.three,
  .grid.four,
  .footer-grid,
  .integration-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-head {
    display: block;
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 620px) {
  .grid.three,
  .grid.four,
  .footer-grid,
  .integration-grid,
  .rfq-form,
  .form-grid,
  .metric-grid,
  .keyword-map,
  .mega-menu,
  .mega-menu.zenner-menu,
  .mega-menu.solution-menu {
    grid-template-columns: 1fr;
  }

  .hero .section-inner {
    min-height: auto;
    padding-top: 48px;
  }

  .inquiry-hero {
    padding: 54px 0;
  }

  .mega-product {
    grid-template-columns: 96px 1fr;
  }

  .mega-product img {
    width: 96px;
    height: 104px;
  }

  section {
    padding: 54px 0;
  }
}
