:root {
  --navy: #10284a;
  --navy-deep: #07192f;
  --blue: #1f5d96;
  --orange: #d97724;
  --steel: #64748b;
  --line: #d7dee8;
  --soft: #f4f7fa;
  --paper: #ffffff;
  --ink: #142033;
  --muted: #556276;
  --shadow: 0 18px 55px rgba(8, 25, 47, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

p {
  margin: 0;
  max-width: 68ch;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--navy-deep);
}

h1 {
  max-width: 920px;
  font-size: clamp(2.25rem, 6vw, 5.25rem);
}

h2 {
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 3.55rem);
}

h3 {
  font-size: 1.25rem;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 10px clamp(20px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(215, 222, 232, 0.85);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy);
}

.brand img {
  width: 92px;
  height: 58px;
  object-fit: contain;
  mix-blend-mode: normal;
  border-radius: 8px;
}

.brand span {
  white-space: nowrap;
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.92rem;
}

.site-nav > a,
.nav-group > button {
  min-height: 42px;
  padding: 10px 12px;
  border: 0;
  background: transparent;
  color: inherit;
  border-radius: 8px;
  cursor: pointer;
}

.site-nav > a:hover,
.nav-group > button:hover {
  background: var(--soft);
  color: var(--blue);
}

.nav-cta {
  background: var(--navy) !important;
  color: #fff !important;
  padding-inline: 16px !important;
}

.nav-group {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  min-width: 285px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: 160ms ease;
}

.dropdown a {
  padding: 11px 12px;
  border-radius: 6px;
  color: var(--navy);
}

.dropdown a:hover {
  background: var(--soft);
  color: var(--blue);
}

.nav-group:hover .dropdown,
.nav-group.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--navy-deep);
}

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

.hero-media {
  background-image: url("./assets/hero-clean-jmd.png");
  background-size: cover;
  background-position: center 42%;
  opacity: 0.88;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(7, 25, 47, 0.88) 0%, rgba(7, 25, 47, 0.66) 44%, rgba(7, 25, 47, 0.22) 100%),
    linear-gradient(0deg, rgba(7, 25, 47, 0.68) 0%, rgba(7, 25, 47, 0.08) 48%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0 clamp(64px, 10vh, 112px);
  color: #fff;
}

.hero-content h1 {
  color: #fff;
}

.hero-content p:not(.eyebrow) {
  margin-top: 22px;
  font-size: clamp(1rem, 2vw, 1.28rem);
  color: rgba(255, 255, 255, 0.88);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #ffbd7b;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.eyebrow.dark {
  color: var(--orange);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  background: var(--orange);
  color: #fff;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.58);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.value-strip {
  position: relative;
  z-index: 4;
  margin-top: -34px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.value-grid div {
  display: flex;
  min-width: 0;
  height: 100%;
  min-height: 154px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px 28px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.value-grid div:last-child {
  border-right: 0;
}

.metric {
  display: block;
  color: var(--navy);
  font-size: clamp(1.5rem, 2.35vw, 2.1rem);
  line-height: 1.05;
  font-weight: 900;
  white-space: nowrap;
}

.metric-compact {
  font-size: clamp(1.05rem, 1.55vw, 1.55rem);
}

.metric + span {
  display: block;
  width: 100%;
  max-width: 26ch;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 650;
  text-align: justify;
  text-align-last: center;
}

.section {
  padding: clamp(70px, 9vw, 112px) 0;
}

.page-hero {
  padding: clamp(78px, 10vw, 130px) 0 clamp(46px, 7vw, 82px);
  background: linear-gradient(135deg, #f8fafc, #e8eef5);
}

.page-hero h1 {
  max-width: 980px;
}

.page-hero p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.12rem;
  text-align: justify;
}

.ecp-page-hero {
  background: linear-gradient(135deg, #fff7ed, #e8eef5);
}

.page-grid {
  padding: 0;
}

.product-focus {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.product-focus img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-focus p {
  margin-top: 16px;
  color: var(--muted);
  text-align: justify;
}

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

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.copy-block {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.about {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: stretch;
}

.about-copy h2 {
  max-width: 760px;
  margin-bottom: clamp(20px, 2vw, 28px);
}

.about-copy .copy-block {
  max-width: 820px;
  gap: 16px;
  line-height: 1.72;
}

.about-copy .copy-block p {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.about-copy a {
  color: var(--blue);
  text-decoration: none;
}

.about-copy a:hover,
.about-copy a:focus-visible {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.market-map-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  border-radius: 8px;
  background: linear-gradient(180deg, #f8fbfd 0%, #eef4f8 100%);
  box-shadow: 0 18px 45px rgba(7, 28, 55, 0.08);
  overflow: hidden;
}

.market-map-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
  text-align: center;
}

.market-map-heading h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.18rem;
}

.market-map-heading p {
  max-width: 420px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.market-map {
  display: block;
  width: 100%;
  min-height: 320px;
  border-radius: 8px;
}

.map-grid path {
  fill: none;
  stroke: rgba(53, 91, 122, 0.16);
  stroke-width: 1;
}

.map-land path {
  fill: url("#landGradient");
  stroke: rgba(21, 54, 84, 0.18);
  stroke-width: 1.4;
}

.sea-lanes path {
  fill: none;
  stroke: rgba(35, 103, 166, 0.34);
  stroke-width: 2.5;
  stroke-dasharray: 8 10;
}

.market-region ellipse {
  fill: rgba(222, 117, 33, 0.1);
  stroke: rgba(222, 117, 33, 0.45);
  stroke-width: 2;
  stroke-dasharray: 8 8;
}

.market-region text {
  fill: rgba(7, 28, 55, 0.62);
  font-size: 24px;
  font-weight: 900;
  text-anchor: middle;
  text-transform: uppercase;
}

.marker circle:first-child {
  fill: rgba(222, 117, 33, 0.2);
  stroke: rgba(222, 117, 33, 0.55);
  stroke-width: 2;
}

.marker .marker-core {
  fill: var(--orange);
  stroke: #fff;
  stroke-width: 2;
}

.marker text {
  fill: var(--navy);
  paint-order: stroke;
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 5;
  stroke-linejoin: round;
  font-size: 23px;
  font-weight: 900;
}

.market-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.market-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 9px;
  border: 1px solid rgba(194, 207, 222, 0.9);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.82rem;
  line-height: 1.25;
  text-align: center;
}

.intro-copy-align {
  padding-top: clamp(36px, 3vw, 48px);
}

.intro-copy {
  padding-top: clamp(34px, 3.8vw, 44px);
}

.justified p,
.application-grid p {
  text-align: justify;
  text-justify: inter-word;
}

.card-grid {
  display: grid;
  gap: 22px;
}

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

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

.feature-card,
.product-card,
.application-grid article,
.case-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(8, 25, 47, 0.07);
}

.feature-card {
  padding: clamp(24px, 4vw, 42px);
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-top: 5px solid var(--blue);
}

.feature-card.accent-orange {
  border-top-color: var(--orange);
}

.service-card {
  padding: 0;
  overflow: hidden;
  min-height: 0;
}

.service-visual {
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  height: clamp(255px, 26vw, 315px);
  background: var(--navy);
  overflow: hidden;
}

.service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 25, 47, 0.72), rgba(7, 25, 47, 0.1));
}

.service-visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  transform: none;
}

.jmd-visual img {
  object-position: center center;
  transform: scale(1.14);
}

.ecp-visual img {
  transform: scale(1);
  object-position: center center;
}

.service-visual span {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  max-width: calc(100% - 48px);
  color: #fff;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  line-height: 1.08;
  font-weight: 900;
}

.service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(24px, 4vw, 42px);
}

.service-body h4 {
  margin: 24px 0 0;
  color: var(--navy);
  font-size: 1.04rem;
  line-height: 1.2;
}

.card-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  width: auto;
  max-width: 100%;
  padding: 10px 12px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--navy);
  font-weight: 900;
  line-height: 1.15;
}

.feature-card h3 {
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.feature-card p {
  margin-top: 16px;
  color: var(--muted);
}

.service-body p {
  text-align: justify;
  text-justify: inter-word;
}

.service-body p + ul {
  margin-top: 16px;
}

.feature-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
}

.feature-card li {
  position: relative;
  padding-left: 18px;
}

.feature-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--orange);
}

.text-link {
  margin-top: auto;
  padding-top: 24px;
  color: var(--blue);
  font-weight: 900;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.82fr);
  gap: 34px;
  align-items: center;
}

.visual-panel {
  min-height: 480px;
  overflow: hidden;
  border-radius: 8px;
  background: #d9e2ee;
}

.visual-panel img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.visual-panel.tank {
  background: #fff;
}

.visual-panel.tank > img {
  object-fit: contain;
  padding: 12px;
}

.assessment-title {
  text-align: justify;
  text-align-last: justify;
}

.compare-slider {
  --position: 50%;
  position: relative;
  width: 100%;
  min-height: 480px;
  height: 100%;
  overflow: hidden;
  background: #07192f;
  border-radius: 8px;
}

.compare-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.compare-after-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.compare-label {
  position: absolute;
  top: 16px;
  z-index: 3;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(7, 25, 47, 0.78);
  color: #fff;
  font-weight: 850;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.compare-label.before {
  right: 16px;
}

.compare-label.after {
  left: 16px;
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 4;
  width: 3px;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 0 0 1px rgba(7, 25, 47, 0.2), 0 0 22px rgba(7, 25, 47, 0.45);
}

.compare-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
  border: 3px solid #fff;
  border-radius: 999px;
  background: rgba(217, 119, 36, 0.94);
  box-shadow: 0 8px 26px rgba(7, 25, 47, 0.35);
}

.compare-slider input[type="range"] {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.content-panel {
  display: grid;
  gap: 20px;
}

.content-panel p {
  color: var(--muted);
}

.content-panel p:not(.eyebrow) {
  text-align: justify;
  text-justify: inter-word;
}

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

.compact-list span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 750;
  color: var(--navy);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

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

.comparison-row {
  display: grid;
  grid-template-columns: 0.75fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row span {
  padding: 18px;
  color: var(--muted);
  border-right: 1px solid var(--line);
}

.comparison-row span:last-child {
  border-right: 0;
}

.comparison-row span:first-child,
.comparison-row.heading span {
  color: var(--navy);
  font-weight: 850;
}

.comparison-row.heading {
  background: var(--navy);
}

.comparison-row.heading span {
  color: #fff;
}

.product-card {
  overflow: hidden;
}

.linked-card {
  display: grid;
  color: inherit;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.linked-card:hover,
.linked-card:focus-visible {
  border-color: rgba(31, 93, 150, 0.36);
  box-shadow: 0 12px 32px rgba(8, 25, 47, 0.12);
  transform: translateY(-2px);
}

.card-link-label {
  display: inline-flex;
  margin-top: 14px;
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 850;
}

.product-media {
  width: 100%;
  height: clamp(220px, 18vw, 254px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: linear-gradient(135deg, #eef3f7, #fff);
  border-bottom: 1px solid var(--line);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.photo-media {
  padding: 0;
  background: #07192f;
}

.photo-media img {
  object-fit: cover;
  mix-blend-mode: normal;
}

.jmd-product-media img {
  object-fit: cover;
  object-position: center center;
}

.product-card > img,
.material-visual {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--soft);
}

.product-card div:not(.material-visual):not(.product-media) {
  padding: 22px;
}

.product-card p {
  margin-top: 10px;
  color: var(--muted);
}

.material-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 16px;
  padding: 38px;
  background: linear-gradient(135deg, #e7ecf2, #f8fafc);
}

.material-visual span {
  display: block;
  height: 74%;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #aeb9c8, #59697d);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.material-visual span:nth-child(2) {
  height: 92%;
  background: linear-gradient(180deg, #d39a43, #816028);
}

.material-visual span:nth-child(3) {
  height: 64%;
  background: linear-gradient(180deg, #d3d8df, #7c8795);
}

.product-lines {
  display: grid;
  gap: 18px;
}

.product-line {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(8, 25, 47, 0.07);
}

.product-line summary,
.product-line-header {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  color: var(--navy);
  cursor: default;
  list-style: none;
}

.product-line summary {
  cursor: pointer;
}

.product-line-header {
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 1fr);
}

.product-line summary::-webkit-details-marker {
  display: none;
}

.product-line summary::after {
  content: "+";
  justify-self: end;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--soft);
  font-weight: 900;
}

.product-line[open] summary::after {
  content: "-";
}

.product-line summary span,
.product-line-header span {
  font-weight: 900;
  font-size: 1.35rem;
}

.product-line summary strong,
.product-line-header strong {
  color: var(--muted);
  font-weight: 650;
}

.subproduct-grid,
.ecp-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 24px 24px;
}

.ecp-category-grid article {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.category-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 170px;
  padding: 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, #eef3f7, #fff);
  border: 1px solid rgba(215, 222, 232, 0.8);
  cursor: pointer;
}

.ecp-category-grid article:hover {
  border-color: rgba(31, 93, 150, 0.32);
  box-shadow: 0 10px 28px rgba(8, 25, 47, 0.09);
  transform: translateY(-2px);
}

.category-media img {
  width: 100%;
  height: 138px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.ecp-category-grid h3 a {
  color: inherit;
}

.ecp-category-grid p {
  color: var(--muted);
  text-align: justify;
}

.product-line .outline-dark {
  margin: 0 24px 24px;
}

.catalog-page {
  background: #fff;
}

.catalog-nav {
  position: sticky;
  top: 88px;
  z-index: 8;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 24px rgba(8, 25, 47, 0.08);
  backdrop-filter: blur(14px);
}

.catalog-nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.88rem;
}

.catalog-nav span {
  display: inline-flex;
  min-width: 26px;
  height: 24px;
  align-items: center;
  justify-content: center;
  padding-inline: 7px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font-size: 0.78rem;
}

.catalog-list {
  display: grid;
  gap: 18px;
}

.catalog-section {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(8, 25, 47, 0.06);
}

.catalog-section summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  color: var(--navy);
  list-style: none;
}

.catalog-section summary::-webkit-details-marker {
  display: none;
}

.catalog-section summary::after {
  content: "+";
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--soft);
  font-weight: 900;
}

.catalog-section[open] summary::after {
  content: "-";
}

.catalog-section summary span {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 900;
}

.catalog-section summary strong {
  color: var(--muted);
  font-size: 0.95rem;
}

.catalog-section-body {
  padding: 0 24px 24px;
}

.catalog-intro {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--soft);
}

.catalog-intro p {
  color: var(--muted);
  text-align: justify;
}

.catalog-intro a {
  flex: 0 0 auto;
  color: var(--blue);
  font-weight: 850;
}

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

.catalog-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.catalog-media {
  display: flex;
  height: 190px;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: linear-gradient(135deg, #eef3f7, #fff);
  border-bottom: 1px solid var(--line);
}

.catalog-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.catalog-copy {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.catalog-copy h3 {
  font-size: 1rem;
  line-height: 1.22;
}

.catalog-copy p {
  color: var(--muted);
  font-size: 0.9rem;
  text-align: justify;
}

.product-detail-section {
  background: #fff;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 22px;
  align-items: start;
}

.detail-stack {
  display: grid;
  gap: 18px;
  align-content: start;
}

.detail-image-card,
.detail-card,
.legal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(8, 25, 47, 0.07);
}

.detail-image-card {
  position: sticky;
  top: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: clamp(20px, 4vw, 42px);
  background: linear-gradient(135deg, #eef3f7, #fff);
}

.detail-image-card img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.detail-card {
  padding: clamp(22px, 4vw, 36px);
}

.detail-card h2 {
  margin-bottom: 18px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.detail-card p {
  max-width: none;
  margin-top: 14px;
  color: var(--muted);
  text-align: justify;
}

.detail-card .eyebrow {
  margin-bottom: 14px;
}

.detail-considerations {
  grid-column: auto;
}

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

.detail-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  text-align: justify;
}

.detail-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--orange);
}

.source-note a,
.legal-card a {
  color: var(--blue);
  font-weight: 850;
}

.legal-hero p {
  max-width: 860px;
}

.legal-page {
  background: var(--soft);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.3fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 112px;
  display: grid;
  max-height: calc(100vh - 140px);
  gap: 7px;
  overflow-y: auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(8, 25, 47, 0.07);
}

.legal-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.legal-nav a:hover {
  color: var(--blue);
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-card {
  padding: clamp(22px, 4vw, 36px);
}

.legal-card h2 {
  margin-bottom: 18px;
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
}

.legal-card p {
  max-width: none;
  margin-top: 12px;
  color: var(--muted);
  text-align: justify;
}

.text-link.compact {
  margin-top: 0;
  padding-top: 0;
  font-size: 0.9rem;
}

.outline-dark {
  border-color: var(--navy);
  color: var(--navy);
  background: #fff;
}

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

.application-grid article {
  padding: 22px;
}

.app-icon {
  position: relative;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 8px;
  background: #e8eef6;
  overflow: hidden;
}

.app-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-icon::before,
.app-icon::after {
  content: "";
  position: absolute;
  display: none;
}

.app-icon.refinery {
  background: #e8f1fb;
  color: #1f5d96;
}

.app-icon.refinery::before {
  left: 12px;
  bottom: 10px;
  width: 7px;
  height: 25px;
  background: #1f5d96;
  box-shadow: 11px -7px 0 #1f5d96, 22px 3px 0 #5f8fb8;
}

.app-icon.refinery::after {
  left: 9px;
  bottom: 8px;
  width: 30px;
  height: 3px;
  background: #d97724;
}

.app-icon.terminal {
  background: #eef7f0;
  color: #2c7a4b;
}

.app-icon.terminal::before {
  left: 8px;
  bottom: 12px;
  width: 30px;
  height: 18px;
  border-radius: 50% 50% 8px 8px;
  background: #2c7a4b;
}

.app-icon.terminal::after {
  left: 10px;
  bottom: 22px;
  width: 26px;
  height: 6px;
  border-radius: 999px;
  border: 2px solid #7db390;
}

.app-icon.aviation {
  background: #edf3ff;
  color: #315a9b;
}

.app-icon.aviation::before {
  left: 10px;
  top: 22px;
  width: 28px;
  height: 4px;
  background: #315a9b;
  transform: rotate(-16deg);
}

.app-icon.aviation::after {
  left: 19px;
  top: 12px;
  width: 8px;
  height: 24px;
  background: #5d85c4;
  clip-path: polygon(50% 0, 100% 100%, 50% 78%, 0 100%);
  transform: rotate(58deg);
}

.app-icon.agriculture {
  background: #f0f7e8;
  color: #6f8f38;
}

.app-icon.agriculture::before {
  left: 19px;
  bottom: 9px;
  width: 8px;
  height: 28px;
  background: #6f8f38;
}

.app-icon.agriculture::after {
  left: 10px;
  top: 10px;
  width: 26px;
  height: 25px;
  border-radius: 100% 0 100% 0;
  background: #98b65f;
  transform: rotate(-18deg);
}

.app-icon.pipeline {
  background: #edf2f7;
  color: #475569;
}

.app-icon.pipeline::before {
  left: 7px;
  top: 20px;
  width: 32px;
  height: 9px;
  border-radius: 999px;
  background: #475569;
}

.app-icon.pipeline::after {
  left: 20px;
  top: 11px;
  width: 9px;
  height: 27px;
  border-radius: 999px;
  background: #d97724;
}

.app-icon.marine {
  background: #e8f6f9;
  color: #197084;
}

.app-icon.marine::before {
  left: 9px;
  bottom: 14px;
  width: 28px;
  height: 12px;
  background: #197084;
  clip-path: polygon(0 0, 100% 0, 84% 100%, 13% 100%);
}

.app-icon.marine::after {
  left: 9px;
  bottom: 8px;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: #5fb4c6;
  box-shadow: 0 5px 0 #5fb4c6;
}

.app-icon.civil {
  background: #fff4e8;
  color: #c96b1d;
}

.app-icon.civil::before {
  left: 10px;
  bottom: 10px;
  width: 26px;
  height: 28px;
  background: linear-gradient(90deg, transparent 42%, #c96b1d 42% 58%, transparent 58%),
    linear-gradient(#c96b1d 0 0) 0 5px / 100% 4px no-repeat,
    linear-gradient(#c96b1d 0 0) 0 15px / 100% 4px no-repeat,
    linear-gradient(#c96b1d 0 0) 0 25px / 100% 4px no-repeat;
  border-left: 4px solid #c96b1d;
  border-right: 4px solid #c96b1d;
}

.app-icon.steel {
  background: #f2f3f5;
  color: #4b5563;
}

.app-icon.steel::before {
  left: 10px;
  top: 13px;
  width: 26px;
  height: 20px;
  border-left: 6px solid #4b5563;
  border-right: 6px solid #4b5563;
  transform: skew(-15deg);
}

.app-icon.steel::after {
  left: 10px;
  top: 21px;
  width: 28px;
  height: 5px;
  background: #d97724;
}

.application-grid p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
}

.case-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.case-track {
  min-height: 470px;
  position: relative;
}

.case-card {
  display: none;
  overflow: hidden;
  cursor: zoom-in;
}

.case-card.active {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: stretch;
}

.case-card img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: contain;
  background: #f8fafc;
}

.case-card div {
  padding: clamp(24px, 4vw, 44px);
  align-self: center;
}

.case-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.case-card p {
  margin-top: 10px;
  color: var(--muted);
  text-align: justify;
}

.case-card:focus-visible {
  outline: 3px solid rgba(217, 119, 36, 0.45);
  outline-offset: 4px;
}

.news {
  background: #fff;
}

.news-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: start;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(8, 25, 47, 0.08);
  background: linear-gradient(135deg, #fff, #f7fafc);
}

.news-heading {
  display: grid;
  gap: 18px;
  align-content: start;
}

.news-panel time {
  display: inline-flex;
  justify-self: start;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--navy);
  background: #eef3f7;
  font-weight: 850;
}

.news-logos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 2px;
}

.news-logo-card {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.news-logo-card img {
  display: block;
  max-height: 62px;
  object-fit: contain;
}

.nexorion-news-logo img {
  width: 154px;
}

.aziya-news-logo img {
  width: 214px;
}

.news-logo-plus {
  flex: 0 0 auto;
  color: var(--orange);
  font-weight: 900;
}

.news-panel h2 {
  max-width: 640px;
  font-size: clamp(1.45rem, 1.9vw, 2.05rem);
  line-height: 1.2;
  text-align: justify;
  text-align-last: left;
  text-wrap: balance;
}

.news-copy {
  display: grid;
  gap: 16px;
  color: var(--muted);
}

.news-copy strong {
  color: var(--navy);
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 2rem;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(8, 25, 47, 0.1);
}

.carousel-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c2cfde;
}

.carousel-dots button.active {
  width: 30px;
  background: var(--orange);
}

.why {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.why-copy {
  padding-top: 48px;
}

.contact {
  color: #fff;
  background: linear-gradient(135deg, var(--navy-deep), #173d62);
}

.contact h2 {
  color: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(28px, 4.5vw, 58px);
  align-items: stretch;
}

.contact-copy {
  display: grid;
  gap: 20px;
  align-content: start;
  max-width: 470px;
}

.contact-copy h2 {
  text-align: left;
  text-wrap: normal;
}

.contact-title {
  display: grid;
  gap: 4px;
  max-width: 470px;
  font-size: clamp(2.4rem, 3.2vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.contact-title span {
  display: block;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.82);
  text-align: justify;
}

.contact-copy .eyebrow {
  text-align: left;
}

address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.85;
}

address strong,
address a {
  color: #fff;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 4vw, 32px);
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 800;
}

.contact-form label:nth-last-of-type(1),
.contact-form button,
.form-note {
  grid-column: 1 / -1;
}

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

textarea {
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.form-note.success {
  padding: 12px 14px;
  color: #155e38;
  background: #e8f7ee;
  border: 1px solid #bce3ca;
  border-radius: 8px;
}

.site-footer {
  padding: 44px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #07111f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr 0.92fr 0.72fr;
  gap: 28px;
}

.site-footer p {
  text-align: justify;
}

.site-footer strong,
.site-footer span {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 900;
}

.site-footer a {
  display: block;
  margin-top: 7px;
}

.site-footer a[href="#ecp"] {
  font-size: clamp(0.82rem, 1.3vw, 1rem);
  white-space: nowrap;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  gap: 24px;
  align-items: center;
  padding: clamp(20px, 4vw, 54px);
  background: rgba(3, 12, 24, 0.94);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.lightbox-copy {
  padding: 28px;
  border-radius: 8px;
  background: #fff;
}

.lightbox-copy span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.lightbox-copy p {
  margin-top: 12px;
  color: var(--muted);
  text-align: justify;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 42px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-header {
    min-height: 72px;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    max-height: calc(100svh - 72px);
    overflow-y: auto;
    padding: 12px 20px 24px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.static-nav {
    position: static;
    display: flex;
    max-height: none;
    overflow: visible;
    padding: 0;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    width: auto;
  }

  .site-nav.open {
    display: grid;
    align-items: stretch;
    gap: 4px;
  }

  .site-nav > a,
  .nav-group > button {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }

  .static-nav > a {
    width: auto;
    text-align: center;
  }

  .dropdown {
    position: static;
    display: none;
    min-width: 0;
    margin: 0 0 6px 10px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-group.open .dropdown {
    display: grid;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 180px;
  }

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

  .value-grid div:nth-child(2n) {
    border-right: 0;
  }

  .value-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .intro-copy,
  .intro-copy-align {
    padding-top: 0;
  }

  .card-grid.three,
  .application-grid,
  .catalog-grid,
  .subproduct-grid,
  .ecp-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-column,
  .about-panel,
  .split-panel,
  .contact-layout,
  .product-focus,
  .news-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split-panel .visual-panel {
    order: -1;
  }

  .case-carousel {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    display: none;
  }

  .case-card.active {
    grid-template-columns: 1fr;
  }

  .case-card img {
    min-height: 320px;
    aspect-ratio: 16 / 9;
  }

  .case-track {
    min-height: auto;
  }

  .catalog-nav {
    position: static;
  }

  .product-detail-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .detail-image-card,
  .legal-nav {
    position: static;
    max-height: none;
  }

  .detail-considerations {
    grid-column: auto;
  }

  .catalog-intro {
    display: grid;
  }

  .lightbox {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }
}

@media (max-width: 720px) {
  .brand {
    gap: 12px;
  }

  .brand img {
    width: 74px;
    height: 46px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand span {
    display: block;
    font-size: 1rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    width: min(100% - 28px, 1180px);
    padding-bottom: 54px;
  }

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

  .value-strip {
    margin-top: 0;
  }

  .value-grid,
  .card-grid.two,
  .card-grid.three,
  .application-grid,
  .catalog-grid,
  .subproduct-grid,
  .ecp-category-grid,
  .contact-form,
  .compact-list {
    grid-template-columns: 1fr;
  }

  .metric {
    white-space: nowrap;
  }

  .product-line summary,
  .product-line-header {
    grid-template-columns: 1fr auto;
  }

  .product-line summary strong,
  .product-line-header strong {
    grid-column: 1 / -1;
  }

  .product-line-header {
    grid-template-columns: 1fr;
  }

  .product-line summary::after {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
  }

  .catalog-section summary {
    grid-template-columns: 1fr auto;
  }

  .catalog-section summary strong {
    grid-column: 1 / -1;
  }

  .contact-copy {
    max-width: 100%;
  }

  .contact-title {
    max-width: 100%;
    font-size: clamp(2.25rem, 11vw, 3.1rem);
  }

  .news-logos {
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
  }

  .nexorion-news-logo img {
    width: 96px;
  }

  .aziya-news-logo img {
    width: 142px;
  }

  .value-grid {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .value-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .value-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .value-grid div:last-child {
    border-bottom: 0;
  }

  .market-map {
    min-height: 250px;
  }

  .marker text {
    font-size: 28px;
  }

  .market-region text {
    font-size: 26px;
  }

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

  .feature-card {
    min-height: auto;
  }

  .comparison {
    display: grid;
    gap: 14px;
    border: 0;
    background: transparent;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
  }

  .comparison-row.heading {
    display: none;
  }

  .comparison-row span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .comparison-row span:last-child {
    border-bottom: 0;
  }

  .comparison-row span:first-child {
    background: var(--navy);
    color: #fff;
  }

  .visual-panel,
  .visual-panel img {
    min-height: 280px;
  }

  .compare-slider,
  .compare-image {
    min-height: 280px;
  }
}
