:root {
  --bg: #ffffff;
  --bg-alt: #ffffff;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --text: #0a1624;
  --muted: #55647a;
  --accent: #d6b15b;
  --accent-dark: #a47925;
  --line: #e6e9f0;
  --shadow: 0 28px 70px rgba(10, 22, 36, 0.18);
  --hero-text: #fbf7ee;
  --hero-subtle: rgba(251, 247, 238, 0.82);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --sun-yellow: #ffff00;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: #ffffff;
  color: var(--text);
  line-height: 1.6;
  letter-spacing: 0.1px;
  overflow-x: hidden;
}

.products-page {
  background-color: #0b0b0b;
  background-image: url("assets/product-tab-bg.jpg");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: top center;
  background-attachment: scroll;
  color: #e7edf8;
  position: relative;
  overflow-x: hidden;
}

.products-page::before,
.products-page::after {
  content: none;
}

.products-page main,
.products-page footer {
  position: relative;
  z-index: 1;
}

.products-page .site-header {
  background: rgba(8, 14, 26, 0.92);
  border-bottom: 1px solid rgba(214, 177, 91, 0.22);
}

.products-page .nav-links a,
.products-page .brand,
.products-page .brand strong,
.products-page .brand small {
  color: #e7edf8;
}

.products-page .section-title h2,
.products-page .section-title p {
  color: #e7edf8;
}

.products-page #products .section-title {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  max-width: min(760px, 100%);
}

.products-page #products .section-title h2 {
  margin: 0 0 10px;
}

.products-page #products .section-title p {
  margin: 0;
  line-height: 1.45;
}

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

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(7, 12, 18, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand span {
  font-size: 28px;
}

.brand img {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 24px rgba(7, 12, 18, 0.35);
}

.brand strong {
  display: block;
  font-family: "Playfair Display", serif;
  letter-spacing: 1.4px;
  font-size: 1em;
  color: #f5f2ea;
}

.brand small {
  color: rgba(247, 242, 232, 0.68);
  font-size: 0.7em;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.nav-links {
  display: flex;
  gap: 18px;
  color: rgba(247, 242, 232, 0.68);
  font-size: 14px;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(10, 16, 24, 0.38);
  color: rgba(247, 242, 232, 0.92);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 22px;
  line-height: 1;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.nav-toggle:hover {
  background: rgba(10, 16, 24, 0.55);
}

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

.nav-item.has-dropdown {
  padding-bottom: 12px;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  display: none;
  flex-direction: column;
  gap: 8px;
  min-width: 240px;
  padding: 12px;
  background: #ffffff;
  color: #0a1624;
  border: 1px solid rgba(10, 22, 36, 0.1);
  border-radius: 14px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.nav-item.has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-caret {
  font-size: 12px;
  line-height: 1;
  opacity: 0.85;
  transform: translateY(1px);
}

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

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  display: flex;
}

.nav-item.has-dropdown.is-open .nav-dropdown {
  display: flex;
}

.nav-dropdown a {
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

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

.products-page .nav-dropdown {
  background: rgba(9, 14, 24, 0.98);
  border: 1px solid rgba(214, 177, 91, 0.22);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.products-page .nav-dropdown a {
  color: #e7edf8;
}

.products-page .nav-dropdown a:hover {
  color: #ffffff;
}

.valves-page {
  background: #ffffff;
  color: var(--text);
}

.valves-page .site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.valves-page .nav-links,
.valves-page .brand,
.valves-page .brand strong,
.valves-page .brand small {
  color: var(--text);
}

.valves-page .nav-links a:hover {
  color: #0a1624;
}

.valves-page .nav-dropdown {
  background: #ffffff;
  color: #0a1624;
}

.valves-page .nav-dropdown a {
  color: #0a1624;
}

.valves-page .nav-dropdown a:hover {
  color: #0a1624;
}

.valves-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.valves-title h2 {
  letter-spacing: 2px;
}

.valves-description {
  max-width: 720px;
  color: #24324a;
  margin: 18px 0 36px;
}

.valves-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 46px 72px;
  align-items: center;
  justify-items: center;
}

.valves-logo {
  width: 100%;
  max-width: 360px;
  max-height: 120px;
  object-fit: contain;
}

@media (max-width: 640px) {
  .valves-logos {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

.valves-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 22px 28px;
  align-items: center;
}

.valves-brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1b2638;
}

.gas-analyzers-page {
  background: #ffffff;
  color: var(--text);
}

.gas-analyzers-page .site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.gas-analyzers-page .nav-links,
.gas-analyzers-page .brand,
.gas-analyzers-page .brand strong,
.gas-analyzers-page .brand small {
  color: var(--text);
}

.gas-analyzers-page .nav-links a:hover {
  color: #0a1624;
}

.gas-analyzers-page .nav-dropdown {
  background: #ffffff;
  color: #0a1624;
}

.gas-analyzers-page .nav-dropdown a {
  color: #0a1624;
}

.gas-analyzers-page .nav-dropdown a:hover {
  color: #0a1624;
}

.gas-analyzers-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.gas-analyzers-title h2 {
  letter-spacing: 2px;
}

.gas-analyzers-description {
  max-width: 820px;
  color: #24324a;
  margin: 18px 0;
}

.gas-analyzers-description.gas-analyzers-sub {
  margin-top: 0;
}

.gas-analyzers-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 46px 72px;
  align-items: center;
  justify-items: center;
  margin-top: 28px;
}

.gas-analyzers-logo {
  width: 100%;
  max-width: 360px;
  max-height: 170px;
  object-fit: contain;
}

@media (max-width: 640px) {
  .gas-analyzers-logos {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

.plc-page {
  background: #ffffff;
  color: var(--text);
}

.plc-page .site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.plc-page .nav-links,
.plc-page .brand,
.plc-page .brand strong,
.plc-page .brand small {
  color: var(--text);
}

.plc-page .nav-links a:hover {
  color: #0a1624;
}

.plc-page .nav-dropdown {
  background: #ffffff;
  color: #0a1624;
}

.plc-page .nav-dropdown a {
  color: #0a1624;
}

.plc-page .nav-dropdown a:hover {
  color: #0a1624;
}

.plc-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.plc-title h2 {
  letter-spacing: 2px;
}

.plc-description {
  max-width: 820px;
  color: #24324a;
  margin: 18px 0 32px;
}

.plc-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 46px 72px;
  align-items: center;
  justify-items: center;
}

.plc-logo {
  width: 100%;
  max-width: 360px;
  max-height: 170px;
  object-fit: contain;
}

@media (max-width: 640px) {
  .plc-logos {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

.vfd-page {
  background: #ffffff;
  color: var(--text);
}

.vfd-page .site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.vfd-page .nav-links,
.vfd-page .brand,
.vfd-page .brand strong,
.vfd-page .brand small {
  color: var(--text);
}

.vfd-page .nav-links a:hover {
  color: #0a1624;
}

.vfd-page .nav-dropdown {
  background: #ffffff;
  color: #0a1624;
}

.vfd-page .nav-dropdown a {
  color: #0a1624;
}

.vfd-page .nav-dropdown a:hover {
  color: #0a1624;
}

.vfd-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.vfd-title h2 {
  letter-spacing: 2px;
}

.vfd-description {
  max-width: 820px;
  color: #24324a;
  margin: 18px 0 32px;
}

.vfd-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 46px 72px;
  align-items: center;
  justify-items: center;
}

.vfd-logo {
  width: 100%;
  max-width: 360px;
  max-height: 170px;
  object-fit: contain;
}

@media (max-width: 640px) {
  .vfd-logos {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

.motors-page {
  background: #ffffff;
  color: var(--text);
}

.motors-page .site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.motors-page .nav-links,
.motors-page .brand,
.motors-page .brand strong,
.motors-page .brand small {
  color: var(--text);
}

.motors-page .nav-links a:hover {
  color: #0a1624;
}

.motors-page .nav-dropdown {
  background: #ffffff;
  color: #0a1624;
}

.motors-page .nav-dropdown a {
  color: #0a1624;
}

.motors-page .nav-dropdown a:hover {
  color: #0a1624;
}

.motors-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.motors-title h2 {
  letter-spacing: 2px;
}

.motors-description {
  max-width: 820px;
  color: #24324a;
  margin: 18px 0 32px;
}

.motors-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 46px 72px;
  align-items: center;
  justify-items: center;
}

.motors-logo {
  width: 100%;
  max-width: 360px;
  max-height: 170px;
  object-fit: contain;
}

@media (max-width: 640px) {
  .motors-logos {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a {
  position: relative;
  padding-bottom: 6px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(214, 177, 91, 0.2));
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(199, 154, 59, 0.7);
  color: #f7f2e8;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--accent);
  color: #0b111b;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  filter: brightness(1.05) saturate(1.05);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  animation: none;
  will-change: opacity, transform;
  transform: scale(1);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-slide.slide-1 {
  background-image: none;
  animation-delay: 0s;
}

.hero-slide.slide-2 {
  background-image: none;
  animation-delay: 5s;
}

.hero-slide.slide-3 {
  background-image: none;
  animation-delay: 10s;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.02);
}

.hero-controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
  z-index: 2;
}

.hero-arrow {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(8, 12, 18, 0.45);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero-arrow:hover {
  transform: translateY(-2px);
  background: rgba(8, 12, 18, 0.65);
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.22), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(214, 177, 91, 0.22), transparent 50%),
    linear-gradient(180deg, rgba(8, 12, 18, 0.1), rgba(8, 12, 18, 0.35));
}

@keyframes hero-slide {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  8% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: scale(1);
  }
  41% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 130px 24px 100px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 44px;
  align-items: center;
}

.hero-content {
  color: var(--hero-text);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.1;
  margin: 12px 0 18px;
  color: var(--hero-text);
  text-shadow: 0 20px 30px rgba(6, 10, 15, 0.45);
}

.subhead {
  color: var(--hero-subtle);
  font-size: 18px;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

.primary,
.secondary {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.primary {
  background: var(--accent);
  color: #0b111b;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.secondary {
  border: 1px solid rgba(251, 247, 238, 0.5);
  color: var(--hero-text);
  backdrop-filter: blur(8px);
}

.primary:hover,
.secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(10, 22, 36, 0.22);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.hero-highlights div {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(10, 16, 24, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.hero-highlights span {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.hero-highlights small {
  color: var(--hero-subtle);
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.hero-card,
.hero-panel {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.hero-card h3 {
  font-family: "Playfair Display", serif;
  letter-spacing: 1px;
  margin-top: 0;
}

.hero-card ul {
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
}

.hero-panel {
  background: linear-gradient(135deg, rgba(214, 177, 91, 0.25), rgba(255, 255, 255, 0.8));
  font-weight: 600;
}

.section {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section.alt {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

#industries.section.alt {
  background: #cfe8ff;
  border-top: none;
  border-bottom: none;
  box-shadow: 0 0 0 100vmax #cfe8ff;
  clip-path: inset(0 -100vmax);
}

#industries.section.alt .section-title {
  text-align: center;
}

#contact.section.alt,
.site-footer {
  background: var(--sun-yellow);
  border-top: none;
  border-bottom: none;
  box-shadow: 0 0 0 100vmax var(--sun-yellow);
  clip-path: inset(0 -100vmax);
}

body:not(.contact-page) #contact.section.alt {
  background: #ffffff;
  box-shadow: 0 0 0 100vmax #ffffff;
}

.products-page .site-footer,
.industries-page .site-footer,
.contact-page .site-footer {
  background: #ffff00;
  box-shadow: 0 0 0 100vmax #ffff00;
}

.section-title {
  margin-bottom: 30px;
}

.section-title h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3vw, 40px);
  margin-bottom: 6px;
  letter-spacing: 0.6px;
}

.section-title p {
  color: var(--muted);
}

.clients {
  position: relative;
}

.clients::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(214, 177, 91, 0.12), transparent 60%),
    radial-gradient(circle at 80% 30%, rgba(10, 22, 36, 0.08), transparent 60%);
  pointer-events: none;
}

.clients .section-title {
  position: relative;
  z-index: 1;
}

.clients-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.client-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(214, 177, 91, 0.35);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: 0 20px 40px rgba(12, 27, 42, 0.12);
}

.client-card img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 16px;
  padding: 10px;
  border: 1px solid #efe5cc;
}

.client-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

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

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

.products-marquee {
  position: relative;
  overflow: hidden;
  padding: 8px 0;
}

body:not(.products-page) #products.section {
  background: #fff6cc;
  box-shadow: 0 0 0 100vmax #fff6cc;
  clip-path: inset(0 -100vmax);
}

body:not(.products-page) #products.section .products-marquee::before,
body:not(.products-page) #products.section .products-marquee::after {
  background: linear-gradient(90deg, rgba(255, 246, 204, 1), rgba(255, 246, 204, 0));
}

.products-marquee::before,
.products-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(248, 245, 240, 1), rgba(248, 245, 240, 0));
}

.products-marquee::after {
  right: 0;
  transform: rotate(180deg);
}

.products-marquee::before {
  left: 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: marquee-left 36s linear infinite;
  will-change: transform;
}

.marquee-set {
  display: flex;
  align-items: center;
  gap: 24px;
}

.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 130px;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.marquee-item:hover {
  transform: translateY(-6px) scale(1.03);
  filter: drop-shadow(0 12px 20px rgba(12, 27, 42, 0.18));
}

.products-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.products-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.products-page .products-grid article {
  background: rgba(10, 18, 36, 0.88);
  border: 1px solid rgba(214, 177, 91, 0.38);
  box-shadow:
    0 22px 44px rgba(2, 7, 16, 0.5),
    0 0 0 1px rgba(214, 177, 91, 0.12);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.products-page .products-grid h3 {
  color: #f4d89b;
}

.products-page .products-grid p {
  color: #c7d3ea;
}

.products-page .products-grid article::after {
  content: "";
  position: absolute;
  inset: -38% -12% auto auto;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(214, 177, 91, 0.3), transparent 70%);
  opacity: 0.85;
  pointer-events: none;
}

.products-page .products-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(214, 177, 91, 0.2), rgba(214, 177, 91, 0.05) 40%, transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

.products-detailed article {
  position: relative;
  overflow: hidden;
}

.products-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 24px 0 20px;
}

.products-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(214, 177, 91, 0.4);
  background: rgba(8, 14, 26, 0.75);
  color: #f4d89b;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.products-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.products-page .products-metrics {
  margin-top: 18px;
}

.metric-card {
  min-width: 140px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(8, 14, 26, 0.82);
  border: 1px solid rgba(214, 177, 91, 0.28);
  box-shadow: 0 16px 30px rgba(2, 7, 16, 0.35);
}

.metric-card span {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: #f4d89b;
  letter-spacing: 1px;
}

.metric-card small {
  display: block;
  margin-top: 4px;
  color: #c7d3ea;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.products-feature-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.feature-card {
  position: relative;
  padding: 18px 18px 20px;
  border-radius: 18px;
  background: linear-gradient(140deg, rgba(12, 22, 40, 0.95), rgba(10, 16, 30, 0.7));
  border: 1px solid rgba(214, 177, 91, 0.24);
  box-shadow: 0 18px 36px rgba(2, 7, 16, 0.35);
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -50px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(214, 177, 91, 0.18), transparent 70%);
  opacity: 0.9;
  pointer-events: none;
}

.feature-card h4 {
  margin: 0 0 6px;
  color: #f4d89b;
  font-size: 16px;
}

.feature-card p {
  margin: 0;
  color: #c7d3ea;
  font-size: 13px;
}

.products-detailed article::after {
  content: "";
  position: absolute;
  inset: -20% -20% auto auto;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(214, 177, 91, 0.18), transparent 70%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.products-detailed article:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.products-page .products-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(214, 177, 91, 0.12), transparent 45%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.products-page .products-grid article:hover::before {
  opacity: 1;
}

.products-page .products-grid article:hover {
  border-color: rgba(214, 177, 91, 0.65);
  box-shadow:
    0 28px 56px rgba(2, 7, 16, 0.55),
    0 0 24px rgba(214, 177, 91, 0.28),
    0 0 0 1px rgba(214, 177, 91, 0.2);
  transform: translateY(-6px);
}

.products-detailed article {
  animation: float-card 6s ease-in-out infinite;
}

.products-detailed article:nth-child(3n) {
  animation-delay: 0.6s;
}

.products-detailed article:nth-child(3n + 1) {
  animation-delay: 1.2s;
}

@keyframes float-card {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes gold-spark {
  0% {
    opacity: 0.2;
    filter: blur(0px);
  }
  50% {
    opacity: 0.45;
    filter: blur(1px);
  }
  100% {
    opacity: 0.2;
    filter: blur(0px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .products-detailed article {
    animation: none;
  }
}

.clients-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.clients-grid img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  margin-bottom: 14px;
}

.products-grid article {
  background: var(--surface);
  border: 1px solid #e6e1d8;
  padding: 20px;
  border-radius: var(--radius-lg);
  min-height: 140px;
  text-align: center;
  box-shadow: 0 16px 30px rgba(12, 27, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.products-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 45px rgba(12, 27, 42, 0.14);
}

.products-grid h3 {
  margin: 8px 0 6px;
  font-size: 18px;
}

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

.products-page .product-image {
  filter: drop-shadow(0 14px 26px rgba(6, 12, 22, 0.4));
  transform: translateY(-4px);
  transition: transform 0.35s ease, filter 0.35s ease;
  mix-blend-mode: normal;
}

.products-page .products-grid article:hover .product-image {
  transform: translateY(-12px) scale(1.08);
  filter:
    drop-shadow(0 28px 46px rgba(214, 177, 91, 0.32))
    drop-shadow(0 16px 32px rgba(6, 12, 22, 0.4));
}

.industries-page {
  background: radial-gradient(circle at 12% 18%, rgba(255, 217, 158, 0.35), transparent 45%),
    radial-gradient(circle at 78% 12%, rgba(176, 224, 255, 0.35), transparent 40%),
    linear-gradient(160deg, #f7fbff 0%, #eef7ff 55%, #fef6ec 100%);
  color: #0a1624;
  position: relative;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
}

.industries-page::before,
.industries-page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  z-index: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(255, 210, 145, 0.35), transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(163, 214, 255, 0.3), transparent 45%);
  animation: drift-glow 14s ease-in-out infinite;
}

.industries-page::after {
  opacity: 0.25;
  animation-duration: 18s;
}

.industries-page .site-header {
  background: rgba(8, 12, 22, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.industries-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
}

.industries-kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #8a6b2a;
  margin: 0 0 12px;
}

.industries-hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 5vw, 40px);
  margin: 0 0 14px;
}

.industries-hero-content p {
  color: #55647a;
  margin: 0 0 18px;
}

.industries-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.industries-stats div {
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(14, 20, 34, 0.8);
  border: 1px solid rgba(244, 216, 155, 0.22);
  text-align: center;
  min-width: 110px;
}

.industries-stats strong {
  display: block;
  font-size: 20px;
  color: #f4d89b;
}

.industries-stats span {
  font-size: 12px;
  color: rgba(238, 242, 251, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.industries-hero-panel .panel-card {
  background: linear-gradient(140deg, rgba(20, 30, 50, 0.95), rgba(9, 14, 26, 0.85));
  border: 1px solid rgba(244, 216, 155, 0.28);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 24px 48px rgba(3, 6, 12, 0.45), 0 0 30px rgba(244, 216, 155, 0.08);
}

.industries-hero-panel h3 {
  font-family: "Playfair Display", serif;
  margin: 0 0 12px;
  color: #f4d89b;
}

.industries-hero-panel ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(238, 242, 251, 0.8);
}

.industries-flow {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.flow-step {
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(22, 30, 48, 0.9), rgba(12, 16, 28, 0.75));
  border: 1px solid rgba(244, 216, 155, 0.22);
  transition: transform 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

.flow-step span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: rgba(244, 216, 155, 0.18);
  color: #f4d89b;
  font-weight: 600;
  margin-bottom: 10px;
}

.flow-step h4 {
  font-family: "Playfair Display", serif;
  margin: 0 0 6px;
  color: #f4d89b;
}

.flow-step p {
  margin: 0;
  color: rgba(238, 242, 251, 0.72);
  font-size: 13px;
}

.flow-step:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 216, 155, 0.45);
}

.industries-grid {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.industry-tile {
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(22, 30, 48, 0.95), rgba(9, 14, 26, 0.75));
  border: 1px solid rgba(244, 216, 155, 0.24);
  box-shadow: 0 18px 36px rgba(3, 6, 12, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.industry-tile h3 {
  font-family: "Playfair Display", serif;
  margin: 0 0 8px;
  color: #f4d89b;
}

.industry-tile p {
  margin: 0;
  color: rgba(238, 242, 251, 0.75);
}

.industry-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px rgba(3, 6, 12, 0.5), 0 0 24px rgba(244, 216, 155, 0.12);
}

.contact-page {
  background: radial-gradient(circle at 20% 15%, rgba(127, 215, 255, 0.12), transparent 45%),
    radial-gradient(circle at 85% 25%, rgba(82, 168, 255, 0.12), transparent 45%),
    linear-gradient(160deg, #0b1f2a 0%, #0a1b24 55%, #07131a 100%);
  color: #eef2fb;
  position: relative;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
}

.contact-page::before,
.contact-page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  z-index: 0;
  background:
    radial-gradient(circle at 12% 30%, rgba(127, 215, 255, 0.25), transparent 45%),
    radial-gradient(circle at 88% 15%, rgba(82, 168, 255, 0.2), transparent 45%);
  animation: drift-glow 16s ease-in-out infinite;
}

.contact-page::after {
  opacity: 0.2;
  animation-duration: 20s;
}

.contact-page .site-header {
  background: rgba(10, 14, 26, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
}

.contact-kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #7fd7ff;
  margin: 0 0 12px;
}

.contact-hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 5vw, 40px);
  margin: 0 0 14px;
}

.contact-hero-content p {
  color: rgba(238, 242, 251, 0.75);
}

.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.contact-chips span {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(127, 215, 255, 0.45);
  color: #d8f2ff;
  font-size: 12px;
}

.contact-hero-panel {
  background: transparent;
  border: none;
  border-radius: 16px;
  padding: 20px;
  box-shadow: none;
}

.contact-page .contact-address .contact-hero-panel {
  padding: 0;
}

.contact-address {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 40px;
  position: relative;
  z-index: 1;
}

.contact-page .contact-address .contact-grid {
  grid-template-columns: minmax(260px, 520px) minmax(260px, 1fr);
  align-items: start;
}

@media (max-width: 900px) {
  .contact-page .contact-address .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-page .contact-address .contact-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  color: inherit;
}

.contact-page .contact-address .contact-card p {
  color: rgba(238, 242, 251, 0.78);
}

.contact-page .contact-address .contact-meta {
  color: rgba(238, 242, 251, 0.68);
}

.contact-cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.contact-page .contact-cta-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

@media (max-width: 640px) {
  .contact-page .contact-cta-grid {
    grid-template-columns: 1fr;
  }
}

.cta-tile {
  background: transparent;
  border: none;
  border-radius: 0;
  min-height: auto;
  display: grid;
  place-items: center;
  padding: 16px;
  position: relative;
}

.contact-page .contact-cta-grid .cta-tile {
  padding: 8px;
}

.cta-tile img {
  max-width: 100%;
  max-height: 240px;
  height: auto;
  object-fit: contain;
}

.cta-tile img[alt="Robot illustration"] {
  mix-blend-mode: normal;
  filter: none;
}

.whatsapp-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.whatsapp-tile .cta-pill {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(17, 160, 95, 0.45);
  color: #0f8653;
  font-weight: 700;
  font-size: 14px;
  margin-top: 12px;
  box-shadow: none;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.whatsapp-tile .cta-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(17, 160, 95, 0.8);
  color: #0f8653;
}

.wa-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.whatsapp-tile img {
  width: min(190px, 70%);
  height: auto;
}

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

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

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: rgba(238, 242, 251, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  border-radius: 12px;
  border: 1px solid rgba(127, 215, 255, 0.28);
  background: rgba(6, 10, 18, 0.9);
  color: #eef2fb;
  padding: 12px 14px;
  font-family: "Manrope", sans-serif;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(127, 215, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(127, 215, 255, 0.15);
}

.contact-form button {
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  background: linear-gradient(120deg, #7fd7ff, #52a8ff);
  color: #0b121c;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(82, 168, 255, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(82, 168, 255, 0.38);
}

.contact-cards {
  max-width: 1200px;
  margin: 0 auto 90px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.contact-cards article {
  padding: 18px;
  border-radius: 18px;
  background: rgba(14, 22, 36, 0.85);
  border: 1px solid rgba(127, 215, 255, 0.2);
  box-shadow: 0 16px 30px rgba(3, 7, 14, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-cards h3 {
  margin: 0 0 8px;
  color: #7fd7ff;
}

.contact-cards p {
  margin: 0;
  color: rgba(238, 242, 251, 0.72);
}

.contact-cards article:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px rgba(3, 7, 14, 0.45), 0 0 24px rgba(127, 215, 255, 0.12);
}

@keyframes drift-glow {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

.product-image {
  width: 100%;
  max-width: 190px;
  height: 130px;
  object-fit: contain;
  margin: 0 auto 6px;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  mix-blend-mode: multiply;
}

@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

.industries-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.industries-grid div {
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid #e6e1d8;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(12, 27, 42, 0.06);
}

body:not(.industries-page) #industries .industries-grid a {
  text-decoration: none;
  display: block;
}

body:not(.industries-page) #industries .industries-grid a > div {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
}

body:not(.industries-page) #industries .industries-grid a:nth-child(1) > div { background: #ffd6e7; }
body:not(.industries-page) #industries .industries-grid a:nth-child(2) > div { background: #d6f5d9; }
body:not(.industries-page) #industries .industries-grid a:nth-child(3) > div { background: #e2d6ff; }
body:not(.industries-page) #industries .industries-grid a:nth-child(4) > div { background: #d6f0ff; }
body:not(.industries-page) #industries .industries-grid a:nth-child(5) > div { background: #fff2cc; }
body:not(.industries-page) #industries .industries-grid a:nth-child(6) > div { background: #ffd9cc; }
body:not(.industries-page) #industries .industries-grid a:nth-child(7) > div { background: #e0ffd6; }
body:not(.industries-page) #industries .industries-grid a:nth-child(8) > div { background: #d6e4ff; }
body:not(.industries-page) #industries .industries-grid a:nth-child(9) > div { background: #ffe0f7; }


.cta {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(120deg, rgba(199, 154, 59, 0.15), rgba(255, 255, 255, 0.9));
  border-radius: 24px;
  border: 1px solid #e6e1d8;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.contact-card {
  background: var(--surface);
  border: 1px solid #e6e1d8;
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 14px 28px rgba(12, 27, 42, 0.08);
}

.contact-meta {
  color: var(--muted);
  margin-top: 12px;
}

.contact-form {
  display: grid;
  gap: 14px;
  background: var(--surface);
  border: 1px solid #e6e1d8;
  padding: 22px;
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 28px rgba(12, 27, 42, 0.08);
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.home-contact-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 16px 0;
  flex-wrap: wrap;
}

.home-contact-cta .cta-robot img {
  max-height: 220px;
  width: auto;
}

.home-contact-cta .cta-chat {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 12px;
}

.home-contact-cta .cta-chat-logo {
  max-width: 180px;
  width: 45vw;
  display: block;
}

.home-contact-cta .cta-chat-logo-link {
  display: inline-block;
}

.home-contact-cta .cta-chat-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(15, 201, 82, 0.35);
  color: #0f8653;
  background: rgba(15, 201, 82, 0.12);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-contact-cta .cta-chat-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.contact-form input,
.contact-form textarea {
  background: #ffffff;
  border: 1px solid #e2dccf;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  color: var(--text);
  font-family: inherit;
}

.form-note {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.site-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 24px 60px;
  border-top: 1px solid #e2dccf;
  color: var(--muted);
  font-size: 14px;
}

.site-footer strong {
  color: var(--text);
}

.site-footer .site-credit {
  margin: 6px 0 0;
  font-size: 13px;
}

.site-footer .site-credit a {
  color: var(--text);
  text-decoration: underline;
  font-weight: 600;
}

.image-credits {
  margin: 20px 0 12px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid #e6e1d8;
  border-radius: 14px;
}

.image-credits h4 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  color: var(--text);
}

.image-credits ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .brand span {
    font-size: 22px;
  }

  .brand img {
    width: 56px;
    height: 56px;
  }

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

@media (max-width: 600px) {
  .nav-toggle {
    display: inline-flex;
    align-self: flex-end;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

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

  .nav-item,
  .nav-item.has-dropdown {
    width: 100%;
  }

  .nav-item.has-dropdown {
    padding-bottom: 0;
  }

  .nav-item.has-dropdown > a {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown {
    position: static;
    width: 100%;
    min-width: 0;
    margin-top: 8px;
    box-shadow: none;
  }

  .brand span {
    font-size: 18px;
  }

  .brand img {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .hero-inner {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .industries-hero,
  .contact-hero {
    padding-top: 100px;
  }
}

@media (max-width: 420px) {
  .nav {
    padding: 14px 16px;
  }

  .hero-inner {
    padding-top: 88px;
    padding-bottom: 70px;
  }

  .products-marquee::before,
  .products-marquee::after {
    width: 64px;
  }

  .marquee-item {
    width: 140px;
    height: 110px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
}
