
:root {
  --navy: #082f49;
  --blue: #0f6fae;
  --blue2: #1593c7;
  --gold: #d8aa3d;
  --gold-soft: #f5dfaa;
  --green: #2d7d62;
  --dark: #111827;
  --text: #354154;
  --muted: #687386;
  --light: #f4f7fb;
  --surface: #ffffff;
  --surface-blue: #f7fbff;
  --border: #d8e0ea;
  --white: #ffffff;
  --shadow: 0 22px 58px rgba(8, 47, 73, 0.16);
  --shadow-soft: 0 12px 30px rgba(17, 24, 39, 0.08);
  --shadow-line: 0 1px 0 rgba(255, 255, 255, 0.74) inset;
  --radius: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fafc 34%, #eef4f9 100%);
  color: var(--dark);
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; }

::selection {
  background: rgba(216, 170, 61, 0.34);
  color: var(--navy);
}

a { color: inherit; text-underline-offset: 3px; }
a:focus-visible, .btn:focus-visible {
  outline: 3px solid rgba(216, 170, 61, 0.72);
  outline-offset: 3px;
}

.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: saturate(160%) blur(16px);
  box-shadow: 0 10px 30px rgba(8, 47, 73, 0.08);
}

.nav {
  max-width: 1220px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
  flex: 0 0 auto;
}

.logo img {
  display: block;
  width: clamp(150px, 18vw, 230px);
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(8, 47, 73, 0.08));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a,
.nav-group summary {
  text-decoration: none;
  color: var(--dark);
  font-size: 14.5px;
  font-weight: 780;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}

.nav-links a:hover,
.nav-group summary:hover { color: var(--blue); }

.nav-group {
  position: relative;
}

.nav-group summary {
  list-style: none;
  cursor: pointer;
  padding: 8px 4px;
}

.nav-group summary::-webkit-details-marker {
  display: none;
}

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

.nav-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 245px;
  display: grid;
  gap: 3px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  outline: 1px solid rgba(255, 255, 255, 0.72);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-group[open] .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu a {
  display: block;
  border-radius: 8px;
  padding: 9px 10px;
  color: var(--dark);
  white-space: nowrap;
}

.nav-menu a:hover {
  background: #f3f7fb;
  color: var(--blue);
}

.mega-menu {
  min-width: 330px;
  grid-template-columns: 1fr 1fr;
}

.nav-group-wide .nav-menu {
  left: 50%;
  transform: translate(-50%, -6px);
}

.nav-group-wide[open] .nav-menu {
  transform: translate(-50%, 0);
}

.nav-cta {
  background: linear-gradient(180deg, #e6bd58, var(--gold));
  color: #101827 !important;
  padding: 10px 16px;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(216, 170, 61, 0.24);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  color: var(--navy) !important;
  font-weight: 800;
}

.lang-switch:hover {
  background: #f3f7fb;
  color: var(--blue) !important;
}

.hero {
  background:
    linear-gradient(90deg, rgba(5, 20, 35, 0.88) 0%, rgba(8, 47, 73, 0.76) 49%, rgba(8, 47, 73, 0.22) 100%),
    url("images/lemico-industrial-fueling-equipment.png") center / cover no-repeat,
    #082f49;
  color: #ffffff;
  min-height: 540px;
  padding: 76px 20px 56px;
  border-bottom: 4px solid var(--gold);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.16), transparent 30%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 82px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(4, 18, 31, 0.28));
  pointer-events: none;
}

.index-page .hero,
.aviation-page .hero,
.products-overview-page .hero {
  background:
    linear-gradient(90deg, rgba(5, 20, 35, 0.88) 0%, rgba(8, 47, 73, 0.72) 50%, rgba(8, 47, 73, 0.16) 100%),
    url("images/airport-dispensing-skid-field.jpg") center / cover no-repeat,
    #082f49;
}

.about-page .hero {
  background:
    linear-gradient(90deg, rgba(5, 20, 35, 0.9) 0%, rgba(8, 47, 73, 0.72) 48%, rgba(8, 47, 73, 0.12) 100%),
    url("images/lemico-history-1958.png") center / cover no-repeat,
    #082f49;
}

.contact-page .hero,
.industries-page .hero,
.project-management-page .hero {
  background:
    linear-gradient(90deg, rgba(5, 20, 35, 0.88) 0%, rgba(8, 47, 73, 0.74) 50%, rgba(8, 47, 73, 0.18) 100%),
    url("images/airport-tank-farm.jpg") center / cover no-repeat,
    #082f49;
}

.industrial-page .hero,
.industrial-liquid-filtration-page .hero {
  background:
    linear-gradient(90deg, rgba(5, 20, 35, 0.88) 0%, rgba(8, 47, 73, 0.74) 50%, rgba(8, 47, 73, 0.18) 100%),
    url("images/aviation-filtration-skid-vessels.jpg") center / cover no-repeat,
    #082f49;
}

.oil-gas-page .hero {
  background:
    linear-gradient(90deg, rgba(5, 20, 35, 0.88) 0%, rgba(8, 47, 73, 0.74) 50%, rgba(8, 47, 73, 0.18) 100%),
    url("images/oil-gas-field-tanks.jpg") center / cover no-repeat,
    #082f49;
}

.retail-page .hero {
  background:
    linear-gradient(90deg, rgba(5, 20, 35, 0.88) 0%, rgba(8, 47, 73, 0.72) 50%, rgba(8, 47, 73, 0.16) 100%),
    url("images/retail-fueling-station-canopy.png") center / cover no-repeat,
    #082f49;
  min-height: 500px;
  padding-top: 58px;
  padding-bottom: 46px;
}

.hydrant-cleaner-page .hero {
  background:
    linear-gradient(90deg, rgba(5, 20, 35, 0.88) 0%, rgba(8, 47, 73, 0.72) 50%, rgba(8, 47, 73, 0.16) 100%),
    url("images/hydrant-cleaner-front-angle.jpg") center / cover no-repeat,
    #082f49;
}

.refueler-page .hero {
  background:
    linear-gradient(90deg, rgba(5, 20, 35, 0.88) 0%, rgba(8, 47, 73, 0.72) 50%, rgba(8, 47, 73, 0.16) 100%),
    url("images/refueler-yellow-truck-profile.jpg") center / cover no-repeat,
    #082f49;
}

.hydrant-servicer-page .hero {
  background:
    linear-gradient(90deg, rgba(5, 20, 35, 0.88) 0%, rgba(8, 47, 73, 0.72) 50%, rgba(8, 47, 73, 0.16) 100%),
    url("images/hydrant-servicer-aircraft-fueling.jpg") center / cover no-repeat,
    #082f49;
}

.loading-arms-page .hero {
  background:
    linear-gradient(90deg, rgba(5, 20, 35, 0.88) 0%, rgba(8, 47, 73, 0.72) 50%, rgba(8, 47, 73, 0.16) 100%),
    url("images/loading-arm-platform-field.jpg") center / cover no-repeat,
    #082f49;
}

.strainers-page .hero {
  background:
    linear-gradient(90deg, rgba(5, 20, 35, 0.88) 0%, rgba(8, 47, 73, 0.72) 50%, rgba(8, 47, 73, 0.16) 100%),
    url("images/sts-strainer-real-photo.jpg") center / cover no-repeat,
    #082f49;
}

.floating-suctions-page .hero {
  background:
    linear-gradient(90deg, rgba(5, 20, 35, 0.88) 0%, rgba(8, 47, 73, 0.72) 50%, rgba(8, 47, 73, 0.16) 100%),
    url("images/airport-aviation-fuel-tanks.png") center / cover no-repeat,
    #082f49;
}

.filter-vessels-page .hero {
  background:
    linear-gradient(90deg, rgba(5, 20, 35, 0.88) 0%, rgba(8, 47, 73, 0.72) 50%, rgba(8, 47, 73, 0.16) 100%),
    url("images/aviation-fuel-vessel-lineup.jpg") center / cover no-repeat,
    #082f49;
}

.aviation-filter-vessels-page .hero {
  background:
    linear-gradient(90deg, rgba(5, 20, 35, 0.88) 0%, rgba(8, 47, 73, 0.72) 50%, rgba(8, 47, 73, 0.16) 100%),
    url("images/aviation-fuel-vessel-lineup.jpg") center / cover no-repeat,
    #082f49;
}

.relaxation-tanks-page .hero {
  background:
    linear-gradient(90deg, rgba(5, 20, 35, 0.88) 0%, rgba(8, 47, 73, 0.72) 50%, rgba(8, 47, 73, 0.16) 100%),
    url("images/sts-strainers-shipping.jpg") center / cover no-repeat,
    #082f49;
}

.aviation-skids-page .hero {
  background:
    linear-gradient(90deg, rgba(5, 20, 35, 0.88) 0%, rgba(8, 47, 73, 0.72) 50%, rgba(8, 47, 73, 0.16) 100%),
    url("images/jet-fuel-dispensing-skid.jpeg") center / cover no-repeat,
    #082f49;
}

.aviation-cabinets-page .hero {
  background:
    linear-gradient(90deg, rgba(5, 20, 35, 0.88) 0%, rgba(8, 47, 73, 0.72) 50%, rgba(8, 47, 73, 0.16) 100%),
    url("images/aviation-dispensing-cabinet-front.jpeg") center / cover no-repeat,
    #082f49;
}

.diesel-filter-vessels-page .hero {
  background:
    linear-gradient(90deg, rgba(5, 20, 35, 0.88) 0%, rgba(8, 47, 73, 0.72) 50%, rgba(8, 47, 73, 0.16) 100%),
    url("images/lemico-industrial-fueling-equipment.png") center / cover no-repeat,
    #082f49;
}

.master-pump-skids-page .hero {
  background:
    linear-gradient(90deg, rgba(5, 20, 35, 0.88) 0%, rgba(8, 47, 73, 0.72) 50%, rgba(8, 47, 73, 0.16) 100%),
    url("images/diesel-master-pump-skid.jpg") center / cover no-repeat,
    #082f49;
}

.volumetric-provers-page .hero {
  background:
    linear-gradient(90deg, rgba(5, 20, 35, 0.88) 0%, rgba(8, 47, 73, 0.72) 50%, rgba(8, 47, 73, 0.16) 100%),
    url("images/volumetric-prover.jpg") center / cover no-repeat,
    #082f49;
}

.aboveground-storage-page .hero {
  background:
    linear-gradient(90deg, rgba(5, 20, 35, 0.88) 0%, rgba(8, 47, 73, 0.72) 50%, rgba(8, 47, 73, 0.16) 100%),
    url("images/aboveground-storage-tank.jpg") center / cover no-repeat,
    #082f49;
}

.floating-suctions-page .product-photo img[src*="floating-suction-vertical"],
.floating-suctions-page .product-photo img[src*="floating-suction-technical-diagram"],
.floating-suctions-page .image-card img[src*="floating-suction-technical-diagram"] {
  object-fit: contain;
  background: #ffffff;
  padding: 14px;
}

.strainers-page .hero-photo img[src*="sts-strainer-render"],
.strainers-page .product-photo img[src*="sts-strainer-render"],
.filter-vessels-page .product-photo img[src*="sts-strainer-render"] {
  object-fit: contain;
  background: #ffffff;
  padding: 14px;
}

.loading-arms-page .product-photo img[src*="loading-arm-top-fixed-range"],
.loading-arms-page .product-photo img[src*="loading-arm-multiple-configurations"],
.loading-arms-page .product-photo img[src*="loading-arm-rack-platform"] {
  object-fit: contain;
  background: #ffffff;
  padding: 14px;
}

.loading-arms-page .image-card img[src*="loading-arm-rack-platform"] {
  object-fit: contain;
  background: #ffffff;
  padding: 14px;
}

.diesel-filter-vessels-page .image-card img[src*="sts-strainer-real-photo"],
.diesel-filter-vessels-page .product-photo img[src*="sts-strainer-real-photo"],
.diesel-filter-vessels-page .product-photo img[src*="aviation-vertical-filter-vessels"],
.diesel-filter-vessels-page .product-photo img[src*="locomotive-refueling-skid"] {
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  padding: 14px;
}

.diesel-filter-vessels-page .hero-photo img[src*="lemico-industrial-fueling-equipment"] {
  aspect-ratio: 16 / 9;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #eef4f8 0%, #dce7ef 100%);
  padding: 16px;
}

.volumetric-provers-page .hero-photo img[src*="volumetric-prover"] {
  aspect-ratio: 16 / 9;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #eef4f8 0%, #dce7ef 100%);
  padding: 16px;
}

.hero-inner {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 42px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 8px;
  padding: 8px 13px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.feature-copy .eyebrow,
.box .eyebrow,
.spec-card .eyebrow,
.faq-card .eyebrow {
  background: rgba(15, 111, 174, 0.10);
  border-color: rgba(15, 111, 174, 0.22);
  color: var(--blue);
  box-shadow: none;
}

.hero h1 {
  color: #fff;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 860;
  margin: 0 0 18px;
  text-shadow: none;
}

.hero p {
  color: #edf6ff;
  font-size: 19px;
  margin: 0;
  max-width: 720px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 850;
  border: 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.42) inset;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.btn-primary { background: linear-gradient(180deg, #e6bd58, var(--gold)); color: #101827; }
.btn-secondary { background: #ffffff; color: var(--navy); }
.btn-blue,
.btn-blue:link,
.btn-blue:visited,
.btn-blue:hover,
.btn-blue:active {
  background: linear-gradient(180deg, #1681c3, var(--blue));
  color: #ffffff !important;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 28px rgba(8, 47, 73, 0.18); }

.hero-photo, .image-card {
  background: rgba(255,255,255,.92);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.46);
  outline: 1px solid rgba(8, 47, 73, 0.08);
}

.hero-photo img,
.image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center;
  background: #d9e5f0;
}

.photo-caption {
  padding: 16px 18px;
  background: #fff;
  color: var(--text);
  border-top: 1px solid var(--border);
}

.photo-caption strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 4px;
}

.photo-caption span {
  color: var(--text);
  font-size: 15px;
}

.wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 62px 20px 82px;
}

.trust-strip, .four-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 46px;
}

.trust-card, .box, .product-card, .faq-card, .process, .gallery-card, .spec-card {
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  box-shadow: var(--shadow-soft), var(--shadow-line);
}

.trust-card {
  border-radius: 8px;
  padding: 22px;
  border-top: 3px solid var(--blue2);
  position: relative;
  overflow: hidden;
}

.trust-card::before,
.box::before,
.spec-card::before,
.faq-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  opacity: .9;
}

.trust-card strong {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 7px;
}

.trust-card strong::before {
  content: "";
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, var(--blue), var(--blue2));
  box-shadow: 0 6px 14px rgba(15, 111, 174, 0.22);
}

.trust-card strong::after {
  content: "";
  position: absolute;
  top: 29px;
  left: 31px;
  width: 9px;
  height: 5px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}

.trust-card span {
  color: var(--text);
  font-size: 15px;
}

.intro-grid, .two-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.box {
  border-radius: 8px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.box h2, .box h3 {
  color: var(--navy);
  margin: 0 0 12px;
  line-height: 1.12;
}

.box h2 { font-size: 32px; }
.box h3 { font-size: 24px; }

.box p, .box li {
  color: var(--text);
  font-size: 17px;
}

.box p { margin: 0; }
.box ul { margin: 16px 0 0; padding-left: 20px; }

.section-head {
  margin: 56px 0 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.section-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 92px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue2));
  border-radius: 999px;
}

.section-head h2 {
  color: var(--navy);
  margin: 0 0 8px;
  font-size: 36px;
  line-height: 1.05;
}

.section-head p {
  color: var(--text);
  margin: 0;
  font-size: 17px;
  max-width: 950px;
}

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

.product-card {
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(15, 111, 174, .36);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  opacity: 0;
  transition: opacity .18s ease;
}

.product-card:hover::after {
  opacity: 1;
}

.product-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 220px;
  background: linear-gradient(180deg, #edf4fb 0%, #dce7ef 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.product-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .35s ease, filter .35s ease;
}

.product-card:hover .product-photo img,
.gallery-card:hover img,
.image-card:hover img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.02);
}

.product-photo img[src*="cartridge"],
.gallery-card img[src*="cartridge"],
.image-card img[src*="cartridge"],
.product-photo img[src*="separator-element"],
.gallery-card img[src*="separator-element"],
.image-card img[src*="separator-element"],
.product-photo img[src*="diagram"],
.gallery-card img[src*="diagram"],
.image-card img[src*="diagram"],
.product-photo img[src*="drawing"],
.gallery-card img[src*="drawing"],
.image-card img[src*="drawing"],
.product-photo img[src*="render"],
.gallery-card img[src*="render"],
.image-card img[src*="render"],
.product-photo img[src*="controls"],
.gallery-card img[src*="controls"],
.image-card img[src*="controls"],
.product-photo img[src*="panel"],
.gallery-card img[src*="panel"],
.image-card img[src*="panel"] {
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  padding: 14px;
}

.retail-page .product-photo img[src*="drawing"],
.retail-page .product-photo img[src*="bollard-u-shape"] {
  object-fit: contain;
  background: #ffffff;
  padding: 14px;
}

.product-photo img[src*="relaxation-tank-diagram"] {
  object-fit: contain;
  background: #ffffff;
  padding: 14px;
}

.filter-vessels-page .product-photo img[src*="micronic-filter-cartridge"],
.filter-vessels-page .product-photo img[src*="clay-filter-cartridge"] {
  object-fit: contain;
  background: #ffffff;
  padding: 18px;
}

.filter-vessels-page .product-photo img[src*="aviation-vertical-filter-vessels"] {
  object-fit: cover;
  object-position: center 22%;
}

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

.product-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.2;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.product-card h3::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 5px;
  background:
    linear-gradient(135deg, var(--gold) 0 48%, var(--blue) 48% 100%);
  box-shadow: 0 5px 12px rgba(8, 47, 73, 0.14);
}

.product-card h3 a {
  color: inherit;
  text-decoration: none;
}

.product-card p {
  color: var(--text);
  margin: 0 0 16px;
  font-size: 16px;
  flex-grow: 1;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tag {
  background: linear-gradient(180deg, #f6f9fc, #e7eef6);
  border: 1px solid #d4e2ef;
  color: #17324f;
  border-radius: 8px;
  padding: 6px 9px;
  font-size: 13px;
  font-weight: 850;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(216, 170, 61, 0.18);
}

.card-link {
  display: inline-block;
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
  margin-top: auto;
  position: relative;
}

.card-link::after {
  content: " ->";
  color: var(--gold);
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-card {
  border-radius: 8px;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(15, 111, 174, .34);
}

.gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(180deg, #edf4fb 0%, #dce7ef 100%);
  transition: transform .35s ease, filter .35s ease;
}

.retail-page .gallery-card img[src*="drawing"],
.retail-page .gallery-card img[src*="bollard-u-shape"] {
  object-fit: contain;
  background: #ffffff;
  padding: 14px;
}

.gallery-card span {
  display: block;
  padding: 13px 15px;
  color: var(--navy);
  font-weight: 850;
  font-size: 15px;
}

.aviation-cabinets-page .gallery-card img,
.aviation-skids-page .gallery-card img {
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  padding: 12px;
}

.aviation-cabinets-page .hero-photo img[src*="aviation-dispensing-cabinet-front"],
.aviation-cabinets-page .image-card img[src*="aviation-dispensing-cabinet-open"] {
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #edf4fb 0%, #dde8f1 100%);
  padding: 14px;
}

.aviation-filter-vessels-page .hero-photo img[src*="aviation-fuel-vessel-lineup"],
.aviation-filter-vessels-page .product-photo img[src*="aviation-fuel-vessel-lineup"],
.aviation-filter-vessels-page .image-card img[src*="aviation-haypack-vessel"],
.aviation-filter-vessels-page .product-photo img[src*="aviation-vertical-filter-vessels"] {
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  padding: 14px;
}

.industrial-liquid-filtration-page .hero-photo img[src*="aviation-filtration-skid-vessels"],
.industrial-liquid-filtration-page .product-photo img[src*="aviation-vertical-filter-vessels"],
.industrial-liquid-filtration-page .product-photo img[src*="aviation-fuel-filtration-skid-platform"],
.industrial-liquid-filtration-page .product-photo img[src*="sts-strainer-real-photo"] {
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  padding: 14px;
}

.hydrant-servicer-page .product-photo img[src*="hydrant-servicer-shop-detail"],
.hydrant-servicer-page .product-photo img[src*="hydrant-cart-side"],
.hydrant-servicer-page .image-card img[src*="hydrant-servicer-shop-rear"],
.hydrant-servicer-page .product-photo img[src*="hydrant-servicer-control-panel"] {
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  padding: 14px;
}

.hydrant-cleaner-page .product-photo img[src*="hydrant-cleaner-equipment-deck"] {
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  padding: 14px;
}

.refueler-page .image-card img[src*="truck-panel-controls"],
.refueler-page .product-photo img[src*="refueler-bowser-cart-shop"],
.refueler-page .product-photo img[src*="refueler-equipment-cabinet"] {
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  padding: 14px;
}

.feature-band {
  margin: 54px 0 0;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 26px;
  align-items: stretch;
}

.feature-band.brochure-band {
  grid-template-columns: 1fr;
}

.feature-copy {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  padding: 30px;
  box-shadow: var(--shadow-soft), var(--shadow-line);
  position: relative;
  overflow: hidden;
}

.feature-copy::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
}

.feature-copy h2 {
  color: var(--navy);
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.08;
}

.feature-copy p,
.feature-copy li {
  color: var(--text);
  font-size: 17px;
}

.feature-copy p {
  margin: 0 0 18px;
}

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

.feature-copy li {
  position: relative;
  padding-left: 28px;
}

.feature-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background: rgba(15, 111, 174, 0.13);
  border: 1px solid rgba(15, 111, 174, 0.36);
}

.feature-copy li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: calc(.45em + 4px);
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}

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

.doc-card {
  display: block;
  text-decoration: none;
  background: linear-gradient(180deg, #ffffff, #f8fbfe);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.doc-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 111, 174, .38);
  box-shadow: var(--shadow-soft);
}

.doc-card strong {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 4px;
}

.doc-card strong::before {
  content: "";
  flex: 0 0 auto;
  width: 20px;
  height: 24px;
  border-radius: 4px;
  border: 2px solid var(--blue);
  background:
    linear-gradient(135deg, transparent 0 72%, rgba(15, 111, 174, .18) 72% 100%);
}

.doc-card span {
  color: var(--blue);
  font-weight: 850;
  font-size: 14px;
}

.technical-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.technical-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  box-shadow: var(--shadow-soft), var(--shadow-line);
}

.technical-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: contain;
  background: #ffffff;
  padding: 16px;
}

.technical-card.wide {
  grid-column: 1 / -1;
}

.technical-card.wide img {
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: contain;
  padding: 16px;
}

.technical-card.wide img[src*="island-form-ordering-specifications"] {
  height: auto;
  padding: 0;
}

.technical-card span {
  display: block;
  padding: 13px 15px;
  color: var(--navy);
  font-weight: 850;
}

.process {
  border-radius: 8px;
  padding: 30px;
  margin-top: 54px;
  position: relative;
  overflow: hidden;
}

.process::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
}

.process h2 {
  color: var(--navy);
  margin: 0 0 20px;
  font-size: 34px;
  line-height: 1.1;
}

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

.process-step {
  background: linear-gradient(180deg, #ffffff, #f8fbfe);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.process-step:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 111, 174, .34);
  box-shadow: var(--shadow-soft);
}

.process-step strong {
  display: inline-block;
  background: var(--navy);
  color: #ffffff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  margin-bottom: 10px;
}

.process-step h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 18px;
}

.process-step p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.faq-card {
  border-radius: 8px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.faq-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 20px;
}

.faq-card p {
  margin: 0;
  color: var(--text);
}

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

.spec-card {
  border-radius: 8px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.spec-card h3 {
  color: var(--navy);
  margin: 0 0 10px;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.spec-card h3::before {
  content: "";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 111, 174, .14), rgba(216, 170, 61, .24));
  border: 1px solid rgba(15, 111, 174, .18);
  box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
}

.spec-card h3::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 32px;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  border: 2px solid var(--blue);
  border-top-color: var(--gold);
  transform: rotate(45deg);
}

.spec-card p {
  margin: 0;
  color: var(--text);
}

.cta-box {
  margin-top: 54px;
  background:
    linear-gradient(135deg, rgba(5, 20, 35, .96), rgba(8, 47, 73, .92) 50%, rgba(15, 111, 174, .86)),
    url("images/lemico-industrial-fueling-equipment.png") center / cover no-repeat;
  color: #ffffff;
  border-radius: 8px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.cta-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  pointer-events: none;
}

.cta-box h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.1;
}

.cta-box p {
  margin: 0;
  color: #ffffff;
  font-size: 17px;
}

.cta-box .btn {
  background: var(--gold);
  color: #101827;
  white-space: nowrap;
}

.footer {
  background:
    linear-gradient(180deg, #0f172a, #081827);
  color: #d8e3ee;
  padding: 38px 20px;
  border-top: 4px solid var(--gold);
}

.footer-inner {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer h3 {
  color: #ffffff;
  margin: 0 0 10px;
}

.footer p, .footer a {
  color: #d8e3ee;
  font-size: 15px;
}

.footer a {
  display: block;
  text-decoration: none;
  margin-bottom: 7px;
  transition: color .18s ease, transform .18s ease;
}

.footer a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.note {
  text-align: center;
  color: var(--text);
  margin-top: 26px;
  font-size: 15px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  box-shadow: var(--shadow-soft), var(--shadow-line);
}

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

.data-table th,
.data-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 14px;
  white-space: nowrap;
}

.data-table th {
  background: #edf4fb;
  color: var(--navy);
  font-size: 13px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.data-table tbody tr:nth-child(even) {
  background: #f9fbfd;
}

.hero-photo,
.image-card,
.product-photo,
.gallery-card {
  transform: translateZ(0);
}

.box a,
.feature-copy a,
.process a,
.spec-card a,
.faq-card a {
  color: var(--blue);
  font-weight: 800;
}

.box a:hover,
.feature-copy a:hover,
.process a:hover,
.spec-card a:hover,
.faq-card a:hover {
  color: var(--navy);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .product-card:hover .product-photo img,
  .gallery-card:hover img,
  .image-card:hover img,
  .btn:hover,
  .product-card:hover,
  .gallery-card:hover,
  .process-step:hover {
    transform: none;
  }
}

@media (max-width: 1000px) {
  .hero-inner, .intro-grid, .two-grid, .cta-box, .footer-inner, .feature-band {
    grid-template-columns: 1fr;
  }

  .trust-strip, .product-grid, .service-grid, .process-grid, .faq-grid, .gallery-grid, .four-grid, .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .nav {
    gap: 10px;
    padding: 11px 16px;
  }

  .logo img {
    width: 150px;
  }

  .nav-links {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .nav-links a {
    white-space: nowrap;
    font-size: 13.5px;
  }

  .nav-group {
    flex: 0 0 auto;
  }

  .nav-group summary {
    white-space: nowrap;
    font-size: 13.5px;
  }

  .nav-menu,
  .mega-menu {
    position: fixed;
    top: 72px;
    left: 12px;
    right: 12px;
    min-width: 0;
    max-height: 70vh;
    overflow-y: auto;
    grid-template-columns: 1fr;
    transform: translateY(-6px);
  }

  .nav-group-wide .nav-menu,
  .nav-group-wide[open] .nav-menu {
    left: 12px;
    transform: translateY(0);
  }

  .nav-cta {
    padding: 8px 12px;
  }

  .hero {
    min-height: 620px;
    padding: 50px 16px 44px;
    align-items: flex-start;
  }

  .hero-inner {
    display: block;
  }

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

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

  .hero-photo {
    display: none;
  }

  .hero-copy, .box, .process, .cta-box { padding: 22px; }

  .hero-copy {
    padding: 0;
  }
  .trust-strip, .product-grid, .service-grid, .process-grid, .faq-grid, .gallery-grid, .four-grid, .spec-grid {
    grid-template-columns: 1fr;
  }
  .technical-grid {
    grid-template-columns: 1fr;
  }
  .doc-grid {
    grid-template-columns: 1fr;
  }
  .technical-card.wide img {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .technical-card.wide img[src*="island-form-ordering-specifications"] {
    height: auto;
  }
  .btn { width: 100%; text-align: center; }
  .hero-photo img, .image-card img { aspect-ratio: 16 / 9; height: auto; }
  .product-photo {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }
}
