:root {
  --ink: #111827;
  --muted: #6b7280;
  --soft: #f0f0ee;
  --pill: #ededed;
  --line: #e5e7eb;
  --white: #ffffff;
  --blue: #3b82f6;
  --blue-dark: #2563eb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

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

:where(h1, h2, h3, h4, p, a, span, strong, small, dd, dt, li) {
  overflow-wrap: break-word;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  pointer-events: none;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 16px 0;
  pointer-events: auto;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--pill);
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--pill);
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  width: 17px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: #111827;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.nav-submenu-toggle {
  display: none;
}

.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--pill);
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
}

.nav-pill > a,
.nav-group > a {
  color: #374151;
  font-size: 12px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-pill > a:hover,
.nav-group:hover > a {
  color: #111827;
}

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

.submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  min-width: 230px;
  display: grid;
  gap: 2px;
  padding: 8px;
  background: rgba(237, 237, 237, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.submenu-wide {
  min-width: 360px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.submenu a {
  padding: 9px 10px;
  color: #374151;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  transition: background 0.2s ease, color 0.2s ease;
}

.submenu a:hover {
  color: #111827;
  background: rgba(255, 255, 255, 0.72);
}

.nav-group:hover .submenu,
.nav-group:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--soft);
}

.home-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--soft);
}

.industrial-motion {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.motion-grid,
.motion-video,
.industrial-motion::before,
.industrial-motion::after {
  position: absolute;
  inset: 0;
  content: "";
}

.motion-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.46;
  filter: saturate(0.58) contrast(0.96) brightness(1.12);
  transform: scale(1.03);
}

.motion-grid {
  background:
    linear-gradient(rgba(84, 84, 84, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 84, 84, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
  animation: gridDrift 16s linear infinite;
}

.industrial-motion::before {
  background:
    radial-gradient(circle at 72% 34%, rgba(59, 130, 246, 0.18), transparent 26%),
    radial-gradient(circle at 18% 72%, rgba(84, 84, 84, 0.14), transparent 22%),
    linear-gradient(90deg, rgba(240, 240, 238, 0.96) 0%, rgba(240, 240, 238, 0.82) 38%, rgba(240, 240, 238, 0.36) 100%);
}

.industrial-motion::after {
  background:
    linear-gradient(0deg, rgba(240, 240, 238, 0.94), transparent 48%),
    linear-gradient(180deg, rgba(240, 240, 238, 0.78), transparent 30%);
}

.flow-line {
  position: absolute;
  height: 2px;
  width: 34vw;
  min-width: 240px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.0), rgba(59, 130, 246, 0.72), transparent);
  opacity: 0.7;
  transform-origin: left center;
}

.line-a {
  top: 30%;
  left: 8%;
  animation: flowLeft 5.6s ease-in-out infinite;
}

.line-b {
  top: 43%;
  left: 42%;
  transform: rotate(90deg);
  animation: flowUp 6.4s ease-in-out infinite;
}

.line-c {
  top: 61%;
  left: 28%;
  animation: flowLeft 7.2s ease-in-out infinite reverse;
}

.line-d {
  top: 73%;
  left: 62%;
  transform: rotate(-28deg);
  animation: flowLeft 6.6s ease-in-out infinite;
}

.pressure-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.34);
  animation: pressurePulse 2.8s ease-out infinite;
}

.dot-a {
  top: 29.2%;
  left: 31%;
}

.dot-b {
  top: 60.3%;
  left: 56%;
  animation-delay: 0.7s;
}

.dot-c {
  top: 72%;
  left: 78%;
  animation-delay: 1.2s;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.home-shell {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(360px, 560px);
  gap: clamp(32px, 8vw, 120px);
  align-items: end;
  padding: 118px max(24px, calc((100vw - 1180px) / 2)) 122px;
}

.hero-panel {
  max-width: 420px;
}

.hero-brand-logo {
  width: min(300px, 78vw);
  height: auto;
  margin: 0 0 22px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 10px 28px rgba(17, 24, 39, 0.14));
}

.hero-panel h1 {
  margin: 0 0 12px;
  color: #111827;
  font-size: clamp(2rem, 4vw, 4.25rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero-panel p {
  max-width: 350px;
  margin: 0;
  color: #8f97a3;
  font-size: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.badge-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 11.5px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.badge-link:hover {
  color: var(--blue-dark);
}

.badge-link span,
.outline-cta span {
  display: inline-block;
  transition: transform 0.2s ease;
}

.badge-link:hover span,
.outline-cta:hover span {
  transform: translateX(2px);
}

.hero h1 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-copy {
  margin: 0 0 12px;
  color: #9ca3af;
  font-size: 13px;
  font-weight: 400;
}

.outline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 10px 20px;
  color: var(--blue);
  border: 1px solid #60a5fa;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.outline-cta:hover {
  color: #ffffff;
  background: var(--blue);
  border-color: var(--blue);
}

.ghost-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 10px 20px;
  color: #4b5563;
  border: 1px solid rgba(75, 85, 99, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.ghost-cta span {
  display: inline-block;
  transition: transform 0.2s ease;
}

.ghost-cta:hover {
  color: #111827;
  border-color: rgba(75, 85, 99, 0.28);
  background: rgba(255, 255, 255, 0.72);
}

.ghost-cta:hover span {
  transform: translateX(2px);
}

.system-board {
  align-self: end;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.09);
  backdrop-filter: blur(18px);
}

.board-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 4px 14px;
  color: #8f97a3;
  font-size: 12px;
}

.board-header strong {
  color: #111827;
  font-weight: 500;
}

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

.board-grid a {
  min-height: 122px;
  display: grid;
  align-content: space-between;
  padding: 16px;
  color: #111827;
  border-radius: 16px;
  background: rgba(237, 237, 237, 0.86);
  transition: transform 0.2s ease, background 0.2s ease;
}

.board-grid a:first-child {
  grid-row: span 2;
}

.board-grid a:hover {
  transform: translateY(-2px);
  background: #ffffff;
}

.board-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 500;
}

.board-grid strong {
  display: block;
  margin-top: 18px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.board-grid em {
  color: #8f97a3;
  font-size: 12px;
  font-style: normal;
}

.home-dock {
  position: absolute;
  z-index: 11;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 30px;
  left: max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(237, 237, 237, 0.78);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(16px);
}

.home-dock a {
  padding: 8px 12px;
  color: #4b5563;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease;
}

.home-dock a:hover {
  color: #111827;
  background: rgba(255, 255, 255, 0.72);
}

.home-hero-redesign .industrial-motion::before {
  background:
    radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.16), transparent 24%),
    radial-gradient(circle at 14% 72%, rgba(15, 23, 42, 0.11), transparent 24%),
    linear-gradient(90deg, rgba(240, 240, 238, 0.98) 0%, rgba(240, 240, 238, 0.86) 42%, rgba(240, 240, 238, 0.42) 100%);
}

.refined-home-shell {
  grid-template-columns: minmax(320px, 560px) minmax(320px, 430px);
  align-items: center;
  gap: clamp(42px, 9vw, 150px);
  padding-bottom: 220px;
}

.refined-hero-panel {
  max-width: 560px;
}

.refined-hero-panel .hero-brand-logo {
  width: min(340px, 72vw);
  margin-bottom: 26px;
}

.refined-hero-panel h1 {
  max-width: 560px;
  font-size: clamp(2.65rem, 5vw, 5.65rem);
  letter-spacing: -0.06em;
  line-height: 0.93;
}

.refined-hero-panel p {
  max-width: 450px;
  margin-top: 18px;
  color: #747d8b;
  font-size: 15px;
}

.request-panel {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.1);
  backdrop-filter: blur(18px);
}

.request-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 4px 4px 18px;
  color: #8f97a3;
  font-size: 12px;
}

.request-panel-head strong {
  color: #111827;
  font-weight: 500;
}

.request-steps {
  display: grid;
  gap: 8px;
}

.request-steps div {
  min-height: 104px;
  display: grid;
  align-content: space-between;
  padding: 16px;
  border-radius: 18px;
  background: rgba(237, 237, 237, 0.88);
}

.request-steps span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 500;
}

.request-steps p {
  max-width: 310px;
  margin: 18px 0 0;
  color: #374151;
  font-size: 16px;
  line-height: 1.28;
}

.request-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.request-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: #2563eb;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.request-actions a:hover {
  color: #ffffff;
  background: var(--blue);
}

.home-entry-grid {
  position: absolute;
  z-index: 12;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 96px;
  left: max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.home-entry-grid a {
  min-height: 82px;
  display: grid;
  align-content: space-between;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.07);
  backdrop-filter: blur(14px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.home-entry-grid a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.86);
}

.home-entry-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 500;
}

.home-entry-grid strong {
  color: #111827;
  font-size: 15px;
  font-weight: 500;
}

.home-banner-section {
  position: relative;
  overflow: hidden;
  padding: 92px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(rgba(84, 84, 84, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 84, 84, 0.045) 1px, transparent 1px),
    #e9e9e6;
  background-size: 72px 72px, 72px 72px, auto;
}

.home-banner-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 18% 20%, rgba(59, 130, 246, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.home-banner-section > * {
  position: relative;
  z-index: 1;
}

.home-banner-section-primary {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(390px, 0.74fr) minmax(620px, 1.26fr);
  grid-template-rows: minmax(350px, auto) auto auto;
  grid-template-areas:
    "copy showcase"
    "entry entry"
    "dock dock";
  align-content: center;
  align-items: stretch;
  gap: 18px clamp(30px, 5vw, 70px);
  padding-top: 110px;
  padding-right: max(24px, calc((100vw - 1280px) / 2));
  padding-bottom: 36px;
  padding-left: max(24px, calc((100vw - 1280px) / 2));
}

.home-banner-section-primary::before {
  background:
    radial-gradient(circle at 24% 24%, rgba(59, 130, 246, 0.18), transparent 26%),
    radial-gradient(circle at 82% 36%, rgba(15, 23, 42, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(240, 240, 238, 0.92) 0%, rgba(240, 240, 238, 0.78) 48%, rgba(240, 240, 238, 0.58) 100%);
}

.home-banner-section-primary > .industrial-motion {
  position: absolute;
  z-index: 0;
  opacity: 0.9;
}

.home-banner-section-primary .motion-video {
  opacity: 0.34;
  filter: saturate(0.62) contrast(0.95) brightness(1.18);
}

.home-banner-top {
  grid-area: copy;
  display: flex;
  min-width: 0;
}

.home-banner-head {
  max-width: 820px;
  margin-bottom: 28px;
}

.home-banner-section-primary .home-banner-head {
  max-width: 760px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.home-banner-logo {
  width: min(390px, 100%);
  height: auto;
  margin: 0 0 18px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 10px 26px rgba(17, 24, 39, 0.12));
}

.home-banner-head h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.35rem, 3.35vw, 4.05rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.home-banner-head h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.2vw, 3.45rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.home-banner-head > p:not(.section-kicker) {
  max-width: 620px;
  margin: 14px 0 0;
  color: #6b7280;
  font-size: 15px;
}

.home-banner-section-primary .hero-actions {
  margin-top: auto;
  padding-top: 22px;
}

.home-banner-request {
  display: none;
}

.home-banner-request .request-panel-head {
  padding: 2px 2px 10px;
}

.home-banner-request .request-steps {
  gap: 6px;
}

.home-banner-request .request-steps div {
  min-height: auto;
  padding: 11px 12px;
  border-radius: 14px;
}

.home-banner-request .request-steps p {
  max-width: none;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.24;
}

.home-banner-stage {
  position: relative;
  grid-area: showcase;
  align-self: center;
  display: grid;
  grid-template-rows: auto auto;
  min-width: 0;
  margin-top: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.36);
  box-shadow: 0 32px 80px rgba(17, 24, 39, 0.12);
  backdrop-filter: blur(16px);
}

.home-banner-stage::before {
  position: absolute;
  inset: -18px;
  z-index: -1;
  content: "";
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(59, 130, 246, 0.2), transparent 34%),
    linear-gradient(315deg, rgba(15, 23, 42, 0.12), transparent 32%);
  opacity: 0.75;
}

.home-banner-gallery {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 12px;
  align-items: center;
}

.home-banner-section-primary .home-banner-gallery {
  position: relative;
  display: block;
  min-height: 0;
  aspect-ratio: 22 / 9;
}

.home-banner-viewport {
  min-width: 0;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.08);
}

.home-banner-track {
  height: 100%;
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.home-banner-track::-webkit-scrollbar {
  display: none;
}

.home-banner-slide {
  height: 100%;
  min-width: 0;
  flex: 0 0 100%;
  margin: 0;
  scroll-snap-align: center;
}

.home-banner-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 22 / 9;
  height: auto;
  object-fit: contain;
  background: #f7f7f5;
}

.home-banner-section-primary .home-banner-slide img {
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
}

.home-banner-control {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.home-banner-stage .home-banner-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
}

.home-banner-stage .home-banner-control-prev {
  left: -10px;
}

.home-banner-stage .home-banner-control-next {
  right: -10px;
}

.home-banner-control:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

.home-banner-stage .home-banner-control:hover {
  transform: translateY(calc(-50% - 1px));
}

.home-banner-control:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.home-banner-control span {
  width: 11px;
  height: 11px;
  display: block;
  border-top: 2px solid #111827;
  border-right: 2px solid #111827;
}

.home-banner-control-prev span {
  transform: translateX(2px) rotate(-135deg);
}

.home-banner-control-next span {
  transform: translateX(-2px) rotate(45deg);
}

.home-banner-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.home-banner-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.2);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.home-banner-dots button[aria-current="true"] {
  width: 24px;
  background: var(--blue);
}

.home-entry-grid-inline {
  position: relative;
  z-index: 1;
  right: auto;
  bottom: auto;
  left: auto;
  grid-area: entry;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2px;
}

.home-dock-inline {
  position: relative;
  z-index: 1;
  right: auto;
  bottom: auto;
  left: auto;
  grid-area: dock;
  width: min(100%, 900px);
  justify-self: center;
  margin-top: -4px;
}

.logo-flow-section {
  position: relative;
  overflow: hidden;
  padding: 92px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(rgba(84, 84, 84, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 84, 84, 0.045) 1px, transparent 1px),
    var(--soft);
  background-size: 72px 72px, 72px 72px, auto;
}

.logo-flow-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 80% 22%, rgba(59, 130, 246, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.logo-flow-section-alt {
  background-color: #e9e9e6;
}

.logo-flow-section > * {
  position: relative;
  z-index: 1;
}

.logo-flow-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.logo-flow-head h2 {
  max-width: 680px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.2vw, 3.45rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-transform: uppercase;
}

.logo-flow-head p:not(.section-kicker) {
  max-width: 620px;
  margin: 18px 0 0;
  color: #6b7280;
  font-size: 15px;
}

.logo-carousel {
  overflow: hidden;
  margin-inline: calc(-1 * max(24px, calc((100vw - 1180px) / 2)));
  padding: 8px 0;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.logo-track {
  --logo-gap: 12px;
  display: flex;
  width: max-content;
  gap: var(--logo-gap);
  animation: logoMarquee 34s linear infinite;
}

.logo-carousel-reverse .logo-track {
  animation-direction: reverse;
  animation-duration: 42s;
}

.logo-carousel:hover .logo-track {
  animation-play-state: paused;
}

.logo-tile {
  width: clamp(168px, 17vw, 232px);
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.07);
  backdrop-filter: blur(12px);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.logo-tile:hover {
  transform: translateY(-3px);
  background: #ffffff;
  box-shadow: 0 24px 54px rgba(17, 24, 39, 0.1);
}

.logo-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.92) contrast(1.04);
}

.page-hero,
.contact-section {
  position: relative;
  overflow: hidden;
  padding: 132px max(24px, calc((100vw - 1180px) / 2)) 76px;
  background: var(--soft);
}

.page-hero::before,
.contact-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(84, 84, 84, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 84, 84, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 76% 28%, rgba(59, 130, 246, 0.14), transparent 28%);
  background-size: 62px 62px, 62px 62px, auto;
  animation: gridDrift 18s linear infinite;
}

.page-hero > *,
.contact-section > * {
  position: relative;
  z-index: 1;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 11.5px;
  font-weight: 500;
}

.page-hero h1,
.contact-section h1 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: 2.35rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.page-hero p:not(.section-kicker),
.contact-section p {
  max-width: 680px;
  margin: 18px 0 0;
  color: #9ca3af;
  font-size: 15px;
}

.intro-band,
.section,
.brand-band,
.about-section,
.details-section,
.corporate-section,
.hub-section {
  padding: 84px max(24px, calc((100vw - 1180px) / 2));
  background: var(--soft);
}

.intro-grid,
.split-section,
.about-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
}

.intro-grid h2,
.section-head h2,
.service-copy h2,
.about-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.intro-grid p,
.service-copy p,
.about-section p,
.detail-intro p,
.detail-card p,
.info-card p,
.info-card dd {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.logo-marquee {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--line);
}

.logo-marquee img {
  width: 100%;
  height: 116px;
  object-fit: contain;
  padding: 24px;
  background: #f7f7f5;
}

.section-head {
  max-width: 680px;
  margin-bottom: 28px;
}

.product-grid,
.detail-grid,
.corporate-grid,
.brand-grid,
.hub-grid {
  display: grid;
  gap: 16px;
}

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

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

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

.detail-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

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

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

.hub-card {
  min-height: 290px;
  display: grid;
  align-content: space-between;
  padding: 28px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.07);
  transition: transform 0.2s ease, background 0.2s ease;
}

.hub-card:hover,
.product-link-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.88);
}

.hub-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 500;
}

.hub-card h2 {
  max-width: 260px;
  margin: 42px 0 0;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.hub-card p {
  margin: 18px 0 0;
  color: #6b7280;
  font-size: 14px;
}

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

.product-link-card {
  color: var(--ink);
  transition: transform 0.2s ease, background 0.2s ease;
}

.product-card,
.detail-block,
.detail-card,
.info-card,
.service-panel {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.07);
}

.section-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px max(24px, calc((100vw - 1180px) / 2));
  background: #e9e9e6;
}

.section-switcher a {
  padding: 9px 13px;
  color: #374151;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease;
}

.section-switcher a:hover {
  color: #111827;
  background: #ffffff;
}

.product-card {
  min-height: 350px;
  display: grid;
  grid-template-rows: 172px 1fr;
  overflow: hidden;
}

.product-card img,
.detail-card img,
.brand-grid img {
  width: 100%;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.46);
}

.product-card img {
  height: 172px;
  object-fit: cover;
}

.product-card div,
.detail-card,
.info-card,
.detail-block,
.service-panel {
  padding: 22px;
}

.product-card h3,
.detail-card h4,
.info-card h3,
.detail-intro h3,
.service-panel h3 {
  margin: 0;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.product-card h3 {
  font-size: 20px;
  line-height: 1.16;
}

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

.product-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 500;
}

.detail-block + .detail-block {
  margin-top: 20px;
}

.detail-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 24px;
}

.detail-intro img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
}

.detail-intro h3 {
  font-size: 2rem;
  line-height: 1.1;
}

.detail-intro p:not(.section-kicker) {
  margin-top: 14px;
}

.detail-card img {
  height: 150px;
  margin-bottom: 16px;
}

.detail-card h4 {
  font-size: 17px;
  line-height: 1.18;
}

.detail-card p {
  margin-top: 10px;
  font-size: 13px;
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.detail-gallery.compact {
  grid-template-columns: repeat(2, minmax(0, 320px));
}

.detail-gallery img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.subsection-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.subsection-tabs span {
  padding: 8px 12px;
  color: #374151;
  border-radius: 999px;
  background: var(--pill);
  font-size: 12px;
  font-weight: 500;
}

.brand-band {
  background: #e9e9e6;
}

.brand-grid img {
  height: 108px;
  padding: 22px;
  border-radius: 18px;
}

.pump-hero {
  padding-bottom: 64px;
}

.pump-brand-strip {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 1px;
  padding: 1px max(24px, calc((100vw - 1180px) / 2));
  background: #dfe3e8;
}

.pump-brand-strip a {
  min-height: 118px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 18px 14px;
  color: #4b5563;
  background: #f7f7f5;
  transition: color 0.2s ease, background 0.2s ease;
}

.pump-brand-strip a:hover {
  color: #111827;
  background: #ffffff;
}

.pump-brand-strip img {
  width: 100%;
  height: 42px;
  object-fit: contain;
  filter: saturate(0.9) contrast(1.02);
}

.pump-brand-strip span {
  font-size: 12px;
  font-weight: 500;
}

.pump-overview-section,
.pump-family-section,
.pump-series-section,
.pump-request-section,
.pump-brand-catalog {
  padding: 84px max(24px, calc((100vw - 1180px) / 2));
  background: var(--soft);
}

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

.pump-brand-detail {
  scroll-margin-top: 108px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.07);
}

.pump-brand-detail:nth-child(even) {
  background: rgba(237, 237, 237, 0.76);
}

.pump-brand-head {
  display: grid;
  grid-template-columns: minmax(160px, 230px) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
}

.pump-brand-head img {
  width: 100%;
  height: 126px;
  object-fit: contain;
  padding: 24px;
  border-radius: 18px;
  background: #ffffff;
}

.pump-brand-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.1rem, 4.3vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.pump-brand-head p:not(.section-kicker) {
  max-width: 720px;
  margin: 18px 0 0;
  color: #6b7280;
  font-size: 15px;
}

.pump-model-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.pump-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.pump-photo-grid-wide {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.pump-photo-card {
  min-width: 0;
  display: grid;
  grid-template-rows: 160px 1fr;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.pump-photo-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  padding: 18px;
  background: #ffffff;
}

.pump-photo-card figcaption {
  display: grid;
  align-content: start;
  gap: 6px;
  min-height: 92px;
  padding: 14px;
  border-top: 1px solid rgba(17, 24, 39, 0.06);
}

.pump-photo-card strong {
  color: #111827;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.pump-photo-card small {
  color: #6b7280;
  font-size: 12px;
  line-height: 1.35;
}

.pump-model-groups-wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pump-model-groups > div {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
}

.pump-model-groups h3 {
  margin: 0 0 16px;
  color: #111827;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.pump-model-groups ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pump-model-groups li {
  padding: 7px 10px;
  color: #374151;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 999px;
  background: rgba(247, 247, 245, 0.86);
  font-size: 12px;
  font-weight: 500;
}

.pump-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
}

.pump-overview-copy h2,
.pump-family-section h2,
.pump-series-copy h2,
.pump-request-section h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.pump-overview-copy p:not(.section-kicker),
.pump-series-copy p {
  max-width: 620px;
  margin: 20px 0 0;
  color: #6b7280;
  font-size: 15px;
}

.pump-overview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pump-visual {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.09);
}

.pump-visual img {
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: contain;
  border-radius: 18px;
  background: #ffffff;
}

.pump-family-section {
  background: #e9e9e6;
}

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

.pump-family-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.07);
}

.pump-family-card img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  padding: 24px;
  background: #ffffff;
}

.pump-family-card div {
  padding: 24px;
}

.pump-family-card span,
.pump-request-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 500;
}

.pump-family-card h3 {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.pump-family-card p,
.pump-request-grid p {
  margin: 14px 0 0;
  color: #6b7280;
  font-size: 14px;
}

.pump-series-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.pump-series-copy {
  position: sticky;
  top: 118px;
}

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

.pump-series-list a {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  transition: transform 0.2s ease, background 0.2s ease;
}

.pump-series-list a:hover {
  transform: translateY(-2px);
  background: #ffffff;
}

.pump-series-list span {
  color: #111827;
  font-size: 16px;
  font-weight: 500;
}

.pump-series-list small {
  color: #8f97a3;
  font-size: 12px;
}

.pump-request-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  background: #e9e9e6;
}

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

.pump-request-grid article {
  min-height: 150px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.pump-request-section > .outline-cta {
  grid-column: 2;
  margin-top: -10px;
}

.valve-hero {
  padding-bottom: 64px;
}

.valve-type-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: 1px max(24px, calc((100vw - 1180px) / 2));
  background: #dfe3e8;
}

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

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

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

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

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

.valve-type-strip a {
  min-height: 104px;
  display: grid;
  align-content: space-between;
  padding: 18px;
  background: #f7f7f5;
  transition: background 0.2s ease, color 0.2s ease;
}

.valve-type-strip a:hover {
  background: #ffffff;
}

.valve-type-strip span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 500;
}

.valve-type-strip strong {
  color: #111827;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.16;
}

.valve-overview-section,
.valve-catalog,
.valve-request-section {
  padding: 84px max(24px, calc((100vw - 1180px) / 2));
  background: var(--soft);
}

.valve-overview-section .section-head p:not(.section-kicker) {
  max-width: 760px;
  margin: 18px 0 0;
  color: #6b7280;
  font-size: 15px;
}

.valve-catalog {
  display: grid;
  gap: 18px;
  padding-top: 0;
}

.valve-type-card {
  scroll-margin-top: 108px;
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.07);
}

.valve-type-card:nth-child(even) {
  background: rgba(237, 237, 237, 0.76);
}

.valve-visual-card {
  display: grid;
  grid-template-rows: 240px 1fr;
  overflow: hidden;
  margin: 0;
  border-radius: 22px;
  background: #ffffff;
}

.valve-visual-card img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  padding: 26px;
  background: #ffffff;
}

.valve-visual-card figcaption {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-top: 1px solid rgba(17, 24, 39, 0.06);
}

.valve-visual-card strong {
  color: #111827;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.valve-visual-card small {
  color: #6b7280;
  font-size: 12px;
  line-height: 1.35;
}

.valve-type-copy h2,
.valve-request-section h2 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.valve-type-copy p:not(.section-kicker) {
  max-width: 680px;
  margin: 20px 0 0;
  color: #6b7280;
  font-size: 15px;
}

.valve-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.valve-pills span {
  padding: 8px 11px;
  color: #374151;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 500;
}

.valve-request-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  background: #e9e9e6;
}

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

.valve-request-grid article {
  min-height: 150px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.valve-request-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 500;
}

.valve-request-grid p {
  margin: 14px 0 0;
  color: #6b7280;
  font-size: 14px;
}

.valve-request-section > .outline-cta {
  grid-column: 2;
  margin-top: -10px;
}

.about-section img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 18px;
}

.service-copy p + p,
.about-section p + p {
  margin-top: 16px;
}

.service-panel p {
  margin-top: 12px;
}

.service-panel dl,
.info-card dl {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
}

.service-panel dl div,
.info-card dl div {
  display: grid;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.service-panel dt,
.info-card dt {
  color: var(--blue);
  font-weight: 500;
}

.service-panel dd,
.info-card dd {
  margin: 0;
}

.info-wide {
  max-width: 980px;
}

.contact-section address {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  font-style: normal;
}

address span,
address a {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  color: #374151;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
}

.contact-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.contact-copy address {
  margin-top: 10px;
}

.feedback-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 64px rgba(17, 24, 39, 0.09);
  backdrop-filter: blur(14px);
}

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

.feedback-field {
  display: grid;
  gap: 7px;
  margin: 0;
}

.feedback-field > span:first-child {
  color: #374151;
  font-size: 12px;
  font-weight: 600;
}

.feedback-field input,
.feedback-field textarea {
  width: 100%;
  border: 1px solid rgba(156, 163, 175, 0.36);
  border-radius: 12px;
  padding: 12px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  font: inherit;
  font-size: 14px;
  line-height: 1.45;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.feedback-field input:focus,
.feedback-field textarea:focus {
  border-color: rgba(59, 130, 246, 0.82);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.feedback-field .field-validation-error,
.feedback-field .field-validation-valid {
  min-height: 18px;
  color: #dc2626;
  font-size: 12px;
  line-height: 1.35;
}

.feedback-alert {
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
}

.feedback-alert:empty,
.feedback-alert.validation-summary-valid {
  display: none;
}

.feedback-alert ul {
  margin: 0;
  padding-left: 18px;
}

.feedback-alert-success {
  color: #065f46;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.26);
}

.feedback-alert-error,
.feedback-alert.validation-summary-errors {
  color: #991b1b;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.22);
}

.feedback-submit {
  width: fit-content;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  padding: 0 18px;
  color: #ffffff;
  background: var(--blue-dark);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.feedback-submit:hover {
  transform: translateY(-1px);
  background: #1d4ed8;
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.22);
}

.feedback-submit:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.feedback-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.floating-feedback {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  transform: translate(calc(100% - 52px), -50%);
  transition: transform 0.28s ease;
}

.floating-feedback.is-open {
  transform: translate(0, -50%);
}

.feedback-tab {
  width: 52px;
  min-height: 152px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-right: 0;
  border-radius: 16px 0 0 16px;
  padding: 12px 0;
  color: #ffffff;
  background: linear-gradient(180deg, #2563eb, #0f2f74);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.2);
  cursor: pointer;
}

.feedback-tab span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.feedback-tab:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.feedback-panel {
  position: relative;
  width: min(390px, calc(100vw - 66px));
  max-height: min(680px, calc(100vh - 32px));
  overflow: auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 18px 0 0 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.86)),
    linear-gradient(rgba(84, 84, 84, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 84, 84, 0.04) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.2);
  backdrop-filter: blur(16px);
}

.feedback-panel-head {
  display: grid;
  gap: 8px;
  padding-right: 34px;
  margin-bottom: 16px;
}

.feedback-panel-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.08;
}

.feedback-panel-head p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.feedback-close {
  position: absolute;
  top: 17px;
  right: 17px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.06);
  cursor: pointer;
}

.feedback-close::before,
.feedback-close::after {
  position: absolute;
  top: 16px;
  left: 10px;
  width: 14px;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: #374151;
}

.feedback-close::before {
  transform: rotate(45deg);
}

.feedback-close::after {
  transform: rotate(-45deg);
}

.feedback-close:hover {
  background: rgba(17, 24, 39, 0.1);
}

.feedback-widget-form {
  display: grid;
  gap: 12px;
}

.feedback-widget-form .feedback-field textarea {
  min-height: 116px;
}

.feedback-widget-form .feedback-submit {
  width: 100%;
}

.site-footer {
  display: grid;
  grid-template-columns: 280px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px max(24px, calc((100vw - 1180px) / 2));
  color: var(--muted);
  background: var(--soft);
}

.site-footer img {
  width: 280px;
  max-height: 92px;
  object-fit: contain;
  object-position: left center;
}

.site-footer a {
  color: var(--blue);
  font-size: 13px;
  font-weight: 500;
}

@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 64px 64px, 64px 64px; }
}

@keyframes machineFloat {
  from { transform: translate3d(0, 0, 0) scale(1.02); }
  to { transform: translate3d(-18px, 10px, 0) scale(1.05); }
}

@keyframes flowLeft {
  0%, 100% { opacity: 0.15; transform: translateX(-18px) scaleX(0.72); }
  50% { opacity: 0.75; transform: translateX(36px) scaleX(1); }
}

@keyframes flowUp {
  0%, 100% { opacity: 0.12; transform: rotate(90deg) translateX(-18px) scaleX(0.74); }
  50% { opacity: 0.72; transform: rotate(90deg) translateX(34px) scaleX(1); }
}

@keyframes pressurePulse {
  0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.34); transform: scale(0.82); }
  70% { box-shadow: 0 0 0 18px rgba(59, 130, 246, 0); transform: scale(1); }
  100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); transform: scale(0.82); }
}

@keyframes logoMarquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-50% - (var(--logo-gap) / 2)), 0, 0); }
}

@media (min-width: 640px) {
  .nav-shell {
    gap: 12px;
    padding: 24px 32px 0;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-mark img {
    width: 37px;
    height: 37px;
  }

  .nav-pill {
    gap: 40px;
    padding: 12px 32px;
  }

  .nav-pill > a,
  .nav-group > a {
    font-size: 14px;
  }

  .compact-hero {
    max-width: 320px;
    padding-bottom: 64px;
    margin-left: 48px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }
}

@media (min-width: 768px) {
  .compact-hero {
    margin-left: 80px;
  }
}

@media (min-width: 1024px) {
  .compact-hero {
    padding-bottom: 80px;
    margin-left: 112px;
  }
}

@media (max-width: 1080px) {
  .home-banner-section-primary {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "showcase"
      "copy"
      "entry"
      "dock";
    align-content: start;
    gap: 16px;
    padding-top: 104px;
  }

  .home-banner-top {
    max-width: 760px;
    display: block;
  }

  .home-banner-request {
    display: none;
  }

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

  .nav-pill {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 20px;
  }

  .submenu {
    position: static;
    display: none;
    min-width: 100%;
    margin-top: 8px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .submenu-wide {
    grid-template-columns: 1fr;
  }

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

  .nav-group:hover .submenu,
  .nav-group:focus-within .submenu {
    display: grid;
    transform: none;
  }

  .product-grid,
  .detail-grid,
  .detail-grid.five,
  .brand-grid,
  .pump-brand-strip,
  .valve-type-strip,
  .pump-family-grid,
  .pump-series-list,
  .pump-request-grid,
  .valve-request-grid,
  .corporate-grid,
  .hub-grid,
  .product-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav-shell {
    justify-content: center;
    align-items: flex-start;
    padding-inline: 16px;
  }

  .nav-pill {
    max-width: calc(100vw - 80px);
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
    white-space: normal;
  }

  .motion-video {
    opacity: 0.36;
    transform: scale(1.16);
  }

  .flow-line,
  .pressure-dot {
    display: none;
  }

  .intro-band,
  .section,
  .logo-flow-section,
  .brand-band,
  .about-section,
  .details-section,
  .pump-overview-section,
  .pump-family-section,
  .pump-series-section,
  .pump-request-section,
  .pump-brand-catalog,
  .valve-overview-section,
  .valve-catalog,
  .valve-request-section,
  .corporate-section,
  .hub-section,
  .page-hero,
  .contact-section {
    padding: 112px 18px 56px;
  }

  .intro-grid,
  .split-section,
  .about-section,
  .contact-section,
  .feedback-grid,
  .detail-intro,
  .pump-overview,
  .pump-series-section,
  .pump-request-section,
  .pump-brand-head,
  .pump-model-groups,
  .pump-model-groups-wide,
  .pump-photo-grid,
  .pump-photo-grid-wide,
  .valve-type-card,
  .valve-request-section,
  .product-grid,
  .detail-grid,
  .detail-grid.five,
  .detail-gallery,
  .detail-gallery.compact,
  .brand-grid,
  .corporate-grid,
  .corporate-grid.two,
  .hub-grid,
  .product-hub-grid,
  .home-shell,
  .board-grid,
  .contact-section address,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .home-shell {
    min-height: 100vh;
    align-items: end;
    gap: 22px;
    padding: 116px 18px 118px;
  }

  .refined-home-shell {
    padding: 118px 18px 260px;
  }

  .hero-brand-logo {
    width: min(260px, 82vw);
    margin-bottom: 18px;
  }

  .hero-panel h1 {
    font-size: 2.4rem;
  }

  .refined-hero-panel h1 {
    font-size: 2.85rem;
  }

  .request-panel {
    display: none;
  }

  .home-entry-grid {
    right: 18px;
    bottom: 126px;
    left: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-entry-grid a {
    min-height: 68px;
    padding: 12px;
    border-radius: 16px;
  }

  .system-board {
    display: none;
  }

  .home-dock {
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
    overflow: hidden;
    border-radius: 18px;
  }

  .home-dock a {
    padding: 8px 6px;
    text-align: center;
    font-size: 11px;
  }

  .logo-flow-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .logo-flow-head {
    margin-bottom: 24px;
  }

  .logo-flow-head h2 {
    font-size: 1.65rem;
    letter-spacing: -0.025em;
    line-height: 1.08;
  }

  .logo-carousel {
    margin-inline: -18px;
  }

  .logo-track {
    --logo-gap: 8px;
    animation-duration: 26s;
  }

  .logo-carousel-reverse .logo-track {
    animation-duration: 32s;
  }

  .logo-tile {
    width: 164px;
    height: 92px;
    padding: 14px 18px;
    border-radius: 14px;
  }

  .hero h1,
  .page-hero h1,
  .contact-section h1 {
    font-size: 2rem;
  }

  .filter-hero h1 {
    max-width: 100%;
    font-size: 1.65rem;
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .motor-hero h1 {
    max-width: 100%;
    font-size: 1.8rem;
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .about-section img {
    height: 300px;
  }

  .pump-brand-strip {
    padding-inline: 18px;
  }

  .pump-brand-strip a {
    min-height: 92px;
  }

  .valve-type-strip {
    padding-inline: 18px;
  }

  .valve-type-strip a {
    min-height: 86px;
    padding: 14px;
  }

  .pilz-type-strip {
    grid-template-columns: 1fr;
  }

  .filter-type-strip {
    grid-template-columns: 1fr;
  }

  .valve-type-card {
    scroll-margin-top: 142px;
    padding: 18px;
    border-radius: 22px;
  }

  .valve-visual-card {
    grid-template-rows: 190px 1fr;
    border-radius: 18px;
  }

  .valve-visual-card img {
    height: 190px;
    padding: 20px;
  }

  .valve-type-copy h2,
  .valve-request-section h2 {
    font-size: 2rem;
    line-height: 1.06;
  }

  .valve-request-grid {
    grid-template-columns: 1fr;
  }

  .valve-request-section > .outline-cta {
    grid-column: 1;
    margin-top: 0;
  }

  .pump-brand-detail {
    scroll-margin-top: 142px;
    padding: 18px;
    border-radius: 22px;
  }

  .pump-brand-head {
    gap: 18px;
  }

  .pump-brand-head img {
    height: 104px;
    padding: 18px;
  }

  .pump-brand-head h2 {
    font-size: 2.25rem;
  }

  .pump-model-groups > div {
    padding: 16px;
  }

  .pump-photo-card {
    grid-template-rows: 136px 1fr;
  }

  .pump-photo-card img {
    height: 136px;
    padding: 14px;
  }

  .pump-photo-card figcaption {
    min-height: auto;
  }

  .pump-overview-copy h2,
  .pump-family-section h2,
  .pump-series-copy h2,
  .pump-request-section h2 {
    font-size: 2rem;
    line-height: 1.06;
  }

  .pump-visual img,
  .pump-family-card img {
    height: 190px;
    aspect-ratio: auto;
  }

  .pump-series-copy {
    position: static;
  }

  .pump-request-grid {
    grid-template-columns: 1fr;
  }

  .pump-request-section > .outline-cta {
    grid-column: 1;
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  body.nav-menu-open {
    overflow: hidden;
  }

  .site-header {
    padding-top: env(safe-area-inset-top);
  }

  .nav-shell {
    width: min(100%, 430px);
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 8px;
    align-items: start;
    justify-content: initial;
    margin: 0 auto;
    padding: 12px max(14px, env(safe-area-inset-right)) 0 max(14px, env(safe-area-inset-left));
  }

  .brand-mark {
    grid-column: 1;
  }

  .nav-toggle {
    grid-column: 3;
    display: inline-flex;
    flex-direction: column;
    justify-self: end;
  }

  .nav-pill {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    max-height: calc(100svh - 76px);
    display: none;
    align-items: stretch;
    justify-content: start;
    gap: 4px;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 10px;
    border-radius: 18px;
    background: rgba(237, 237, 237, 0.96);
    box-shadow: 0 18px 48px rgba(17, 24, 39, 0.14);
    backdrop-filter: blur(18px);
  }

  .site-header.is-open .nav-pill {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nav-pill > a,
  .nav-group > a {
    min-height: 44px;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 14px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.2;
  }

  .nav-pill > a:hover,
  .nav-group:hover > a {
    background: rgba(255, 255, 255, 0.68);
  }

  .nav-group {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: stretch;
    justify-items: stretch;
  }

  .nav-group > a {
    grid-column: 1;
  }

  .nav-submenu-toggle {
    grid-column: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    min-height: 44px;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
  }

  .nav-submenu-toggle span {
    width: 9px;
    height: 9px;
    border-right: 2px solid #374151;
    border-bottom: 2px solid #374151;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.2s ease;
  }

  .nav-submenu-toggle[aria-expanded="true"] span {
    transform: translateY(2px) rotate(225deg);
  }

  .nav-submenu-toggle:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
  }

  .submenu,
  .submenu-wide {
    grid-column: 1 / -1;
    position: static;
    width: 100%;
    min-width: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 2px;
    margin: 2px 0 8px;
    padding: 6px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.54);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-group:not(.is-expanded) .submenu {
    display: none;
  }

  .nav-group.is-expanded .submenu {
    display: grid;
  }

  .submenu a {
    min-height: 38px;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    font-size: 13px;
  }

  .intro-band,
  .section,
  .logo-flow-section,
  .brand-band,
  .about-section,
  .details-section,
  .pump-overview-section,
  .pump-family-section,
  .pump-series-section,
  .pump-request-section,
  .pump-brand-catalog,
  .valve-overview-section,
  .valve-catalog,
  .valve-request-section,
  .corporate-section,
  .hub-section {
    padding: 56px 18px;
  }

  .page-hero,
  .contact-section {
    padding: 100px 18px 48px;
  }

  .contact-section {
    min-height: 100svh;
    align-content: start;
    gap: 28px;
  }

  .feedback-form {
    padding: 18px;
    border-radius: 14px;
  }

  .feedback-submit {
    width: 100%;
  }

  .floating-feedback {
    top: auto;
    right: 0;
    bottom: 18px;
    transform: translate(calc(100% - 48px), 0);
  }

  .floating-feedback.is-open {
    transform: translate(0, 0);
  }

  .feedback-tab {
    width: 48px;
    min-height: 132px;
    border-radius: 14px 0 0 14px;
  }

  .feedback-panel {
    width: calc(100vw - 58px);
    max-height: calc(100svh - 36px);
    padding: 18px;
    border-radius: 16px 0 0 16px;
  }

  .home-banner-section {
    padding: 56px 0;
  }

  .home-banner-section-primary {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "showcase"
      "copy"
      "entry"
      "dock";
    align-content: start;
    gap: 14px;
    padding: 88px 0 40px;
  }

  .home-banner-section-primary > .industrial-motion {
    opacity: 0.72;
  }

  .home-banner-section-primary .motion-video {
    opacity: 0.26;
    transform: scale(1.12);
  }

  .home-banner-top {
    max-width: none;
    display: block;
    gap: 0;
    padding: 0 18px;
  }

  .home-banner-stage {
    width: 100%;
    margin-top: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .home-banner-stage::before {
    display: none;
  }

  .home-banner-logo {
    display: none;
  }

  .home-banner-head {
    margin-bottom: 20px;
    padding: 0 18px;
  }

  .home-banner-section-primary .home-banner-head {
    min-height: 0;
    display: block;
    padding: 0;
  }

  .home-banner-head h1 {
    font-size: 2rem;
    letter-spacing: 0;
    line-height: 1.08;
  }

  .home-banner-head h2 {
    font-size: 1.75rem;
    letter-spacing: 0;
    line-height: 1.12;
  }

  .home-banner-head > p:not(.section-kicker) {
    display: none;
  }

  .home-banner-section-primary .hero-actions {
    margin-top: 16px;
    padding-top: 0;
  }

  .home-banner-gallery {
    display: block;
    aspect-ratio: 22 / 9;
  }

  .home-banner-viewport {
    border-inline: 0;
    border-radius: 0;
    box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
  }

  .home-banner-slide img {
    height: auto;
    aspect-ratio: 22 / 9;
  }

  .home-banner-control {
    display: none;
  }

  .home-banner-dots {
    margin-top: 14px;
    padding: 0 18px;
  }

  .section-switcher {
    position: sticky;
    top: 64px;
    z-index: 25;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 18px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .section-switcher::-webkit-scrollbar {
    display: none;
  }

  .section-switcher a {
    min-height: 40px;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    padding: 0 13px;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .home-hero {
    min-height: auto;
    padding-bottom: 18px;
  }

  .home-shell,
  .refined-home-shell {
    min-height: auto;
    align-items: start;
    gap: 0;
    padding: 104px 18px 20px;
  }

  .refined-hero-panel {
    max-width: 100%;
  }

  .hero-brand-logo,
  .refined-hero-panel .hero-brand-logo {
    width: min(220px, 74vw);
    margin-bottom: 18px;
  }

  .hero-panel h1,
  .refined-hero-panel h1 {
    max-width: 100%;
    font-size: 2.2rem;
    line-height: 1.08;
    letter-spacing: 0;
  }

  .hero-panel p,
  .refined-hero-panel p {
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
    gap: 8px;
    margin-top: 20px;
  }

  .outline-cta,
  .ghost-cta {
    width: 100%;
    min-height: 46px;
    justify-content: center;
    padding: 10px 14px;
    text-align: center;
  }

  .home-entry-grid {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0 18px;
  }

  .home-entry-grid a {
    min-height: 92px;
    padding: 12px;
  }

  .home-entry-grid strong {
    font-size: 14px;
    line-height: 1.2;
  }

  .home-dock {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    display: flex;
    justify-content: flex-start;
    gap: 6px;
    overflow-x: auto;
    margin: 8px 18px 0;
    padding: 8px;
    border-radius: 18px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .home-dock::-webkit-scrollbar {
    display: none;
  }

  .home-dock a {
    flex: 0 0 auto;
    padding: 9px 12px;
    font-size: 12px;
    white-space: nowrap;
  }

  .logo-flow-head h2,
  .page-hero h1,
  .contact-section h1,
  .intro-grid h2,
  .section-head h2,
  .service-copy h2,
  .about-section h2,
  .hub-card h2,
  .pump-brand-head h2,
  .pump-overview-copy h2,
  .pump-family-section h2,
  .pump-series-copy h2,
  .pump-request-section h2,
  .valve-type-copy h2,
  .valve-request-section h2 {
    letter-spacing: 0;
  }

  .logo-flow-head h2 {
    font-size: 1.75rem;
    line-height: 1.12;
  }

  .page-hero h1,
  .contact-section h1 {
    font-size: 2rem;
    line-height: 1.12;
  }

  .product-card {
    min-height: auto;
    grid-template-rows: auto 1fr;
    border-radius: 18px;
  }

  .product-card img {
    height: 190px;
  }

  .product-card div,
  .detail-card,
  .info-card,
  .detail-block,
  .service-panel {
    padding: 18px;
  }

  .product-card h3 {
    font-size: 19px;
  }

  .detail-intro img {
    height: 220px;
  }

  .detail-gallery img {
    height: 190px;
  }

  .brand-grid img {
    height: 96px;
  }

  .pump-brand-strip,
  .valve-type-strip {
    display: flex;
    grid-template-columns: none;
    gap: 1px;
    overflow-x: auto;
    padding: 1px 18px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .pump-brand-strip::-webkit-scrollbar,
  .valve-type-strip::-webkit-scrollbar {
    display: none;
  }

  .pump-brand-strip a {
    min-height: 88px;
    flex: 0 0 132px;
    padding: 14px 12px;
    scroll-snap-align: start;
  }

  .valve-type-strip a {
    min-height: 86px;
    flex: 0 0 154px;
    padding: 14px;
    scroll-snap-align: start;
  }

  .pump-brand-catalog,
  .valve-catalog {
    padding-top: 24px;
  }

  .pump-brand-detail,
  .valve-type-card {
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.07);
  }

  .pump-brand-head img {
    width: min(220px, 100%);
    justify-self: start;
  }

  .pump-photo-grid,
  .pump-photo-grid-wide {
    gap: 12px;
  }

  .valve-visual-card {
    grid-template-rows: 180px 1fr;
  }

  .valve-visual-card img {
    height: 180px;
  }

  address span,
  address a {
    min-height: 54px;
    padding: 12px;
    border-radius: 14px;
  }

  .site-footer {
    gap: 10px;
    justify-items: start;
    padding: 24px 18px;
  }

  .site-footer img {
    width: 200px;
  }
}

@media (max-width: 380px) {
  .hero-panel h1,
  .refined-hero-panel h1 {
    font-size: 2rem;
  }

  .hero-brand-logo,
  .refined-hero-panel .hero-brand-logo {
    width: 200px;
  }

  .home-entry-grid a {
    min-height: 86px;
  }
}

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