/* WASH-PRO unified frontend styles */
:root {
  --wash-accent: #f5bc16;
  --wash-accent-dark: #efaa07;
  --wash-dark: #283246;
  --wash-muted: #7b8494;
  --wash-bg: #f6f6f8;
  --wash-border: #e7e9ee;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.border-b {
  border-bottom: none !important;
}

body {
  font-family: "Inter Tight", "Segoe UI", sans-serif;
  color: var(--wash-dark);
  background:
    radial-gradient(circle at top right, rgba(245, 188, 22, 0.07), transparent 35%),
    radial-gradient(circle at left center, rgba(40, 50, 70, 0.04), transparent 48%),
    var(--wash-bg);
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-feature-settings: "ss01" 1;
  text-rendering: geometricPrecision;
}

.wash-body {
  min-width: 320px;
  overflow-x: clip;
}

.page-shell {
  backdrop-filter: blur(1px);
  position: relative;
  z-index: 1000;
}

.page-shell > header {
  position: relative;
  z-index: 2000;
}

.nav-link {
  position: relative;
  padding-bottom: 8px;
  transition: color 0.2s ease;
  text-decoration: none;
  color: #475569;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% - 2px);
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--wash-accent);
  transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--wash-dark);
}

.nav-dropdown {
  position: relative;
  padding-bottom: 16px;
  margin-bottom: -16px;
  z-index: 2100;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-chevron,
.nav-dropdown:focus-within .nav-dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: -14px;
  min-width: 248px;
  padding: 8px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 2200;
}

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

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-link {
  display: block;
  padding: 9px 11px;
  border-radius: 10px;
  color: #475569;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  font-size: 13px;
  line-height: 1.25;
}

.nav-dropdown-link + .nav-dropdown-link {
  margin-top: 2px;
}

.nav-dropdown-link:hover,
.nav-dropdown-link.active {
  background: transparent;
  color: #111827;
}

.nav-dropdown-divider {
  height: 1px;
  margin: 8px 6px;
  background: rgba(203, 213, 225, 0.8);
}

.mobile-nav-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-nav-link::before {
  content: "";
  width: 0;
  height: 2px;
  background: var(--wash-accent);
  transition: width 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #111827;
}

.mobile-nav-link:hover::before,
.mobile-nav-link.active::before {
  width: 12px;
}

.mobile-nav-group {
  display: grid;
  gap: 8px;
}

.mobile-nav-toggle {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s ease;
  font: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.mobile-nav-toggle::before {
  content: "";
  width: 0;
  height: 2px;
  background: var(--wash-accent);
  transition: width 0.2s ease;
}

.mobile-nav-toggle:hover,
.mobile-nav-toggle.active {
  color: #111827;
}

.mobile-nav-toggle:hover::before,
.mobile-nav-toggle.active::before {
  width: 12px;
}

.mobile-nav-chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.mobile-nav-group[data-open="true"] .mobile-nav-chevron {
  transform: rotate(180deg);
}

.mobile-nav-submenu {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  position: relative;
  z-index: 2200;
}

.mobile-nav-sublink {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 12px;
  line-height: 1.3;
}

.mobile-nav-sublink:hover,
.mobile-nav-sublink.active {
  color: #111827;
}

.mobile-nav-divider {
  height: 1px;
  margin: 2px 0;
  background: rgba(203, 213, 225, 0.9);
}

.hero-panel {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(252, 252, 253, 0.82)),
    radial-gradient(circle at 78% 50%, rgba(210, 216, 227, 0.6), transparent 34%),
    #fff;
}

.inner-hero {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 252, 0.92)),
    #fff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 24px;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.hero-flat {
  background: #ffffff;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  box-shadow: none;
}

.hero-bleed {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
}

.hero-bleed-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  overflow: hidden;
}

#page-hero-container,
.inner-hero > *,
.hero-bleed-inner > * {
  min-width: 0;
}

.inner-hero h1,
.inner-hero h2,
.inner-hero h3,
.inner-hero .section-title {
  overflow-wrap: anywhere;
  word-break: normal;
}

.inner-hero p,
.inner-hero a,
.inner-hero span {
  overflow-wrap: anywhere;
}

.hero-uniform {
  min-height: 0;
}

@media (min-width: 768px) {
  .hero-bleed-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero-uniform {
    min-height: 0;
  }
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #b88607;
  font-weight: 700;
}

.section-title {
  margin-top: 14px;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  font-weight: 800;
  color: #1e293b;
}

.section-subtitle {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.55;
  color: #64748b;
}

.page-breadcrumbs {
  width: 100%;
}

.breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
}

.breadcrumb-link,
.breadcrumb-current,
.breadcrumb-separator {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.breadcrumb-link {
  color: #64748b;
  transition: color 0.18s ease;
}

.breadcrumb-link:hover {
  color: #111827;
}

.breadcrumb-current {
  color: #0f172a;
  font-weight: 700;
}

.breadcrumb-separator {
  color: #cbd5e1;
}

.hero-animate {
  opacity: 0;
  transform: translateY(16px);
  animation: riseIn 0.6s ease forwards;
}

.hero-animate.delay-1 {
  animation-delay: 0.15s;
}

.hero-animate.delay-2 {
  animation-delay: 0.3s;
}

.hero-animate.delay-3 {
  animation-delay: 0.45s;
}

/* Image slider styles */
[data-slider] {
  position: relative;
  isolation: isolate;
  touch-action: pan-y;
  max-width: 100vw;
  overflow-x: clip;
}

[data-slider-slide] {
  transition: opacity 0.5s ease;
  object-fit: cover;
}

[data-slider-dot] {
  cursor: pointer;
  transition: background-color 0.3s ease;
  outline: none;
}

[data-slider-dot]:hover {
  opacity: 0.8;
}

@keyframes riseIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wash-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wash-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(17, 24, 39, 0.12);
}

.content-panel {
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.comparison-table-wrap {
  width: 100%;
  padding: 0 10px 10px;
}

.spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 720px;
}

.spec-table thead th {
  background: #f8fafc;
  color: #334155;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 700;
  padding: 14px 16px;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
}

.spec-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid #e2e8f0;
  color: #0f172a;
  font-size: 14px;
}

.spec-table tbody tr:last-child td {
  border-bottom: none;
}

.spec-table th:first-child,
.spec-table td:first-child {
  width: 30%;
  font-weight: 700;
}

@media (min-width: 768px) {
  .comparison-table-wrap {
    padding: 0 24px 18px;
  }
}

.cta-panel {
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 20px;
  background:
    linear-gradient(125deg, #fff, #f8fafc),
    #fff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

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

.info-list li {
  color: #475569;
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}

.info-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #f5bc16;
  position: absolute;
  left: 0;
  top: 9px;
}

.kpi-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #dbe3ef;
  background: #fff;
  color: #475569;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  max-width: 100%;
  white-space: normal;
  line-height: 1.3;
}

.kpi-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--wash-accent);
}

.spec-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 26px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #111827;
  background: linear-gradient(90deg, var(--wash-accent), var(--wash-accent-dark));
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(90deg, var(--wash-accent), var(--wash-accent-dark));
  color: #111827;
  box-shadow: 0 10px 22px rgba(245, 188, 22, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-accent:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(242, 159, 5, 0.24);
}

.hero-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  color: #3a4457;
  border: 1px solid var(--wash-border);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
  transition: all 0.2s ease;
  max-width: 100%;
  white-space: normal;
  line-height: 1.25;
}

.hero-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(90deg, #f59e0b, #f97316);
  color: #ffffff;
  border: 1px solid #ea580c;
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.25);
  transition: all 0.2s ease;
}

.hero-primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.3);
}

.hero-main-title {
  font-size: clamp(30px, 6vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.page-hero-shell {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-radius: 1rem;
  isolation: isolate;
}

.page-hero-shell .page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-shell .page-hero-overlay-primary,
.page-hero-shell .page-hero-overlay-secondary,
.page-hero-shell .page-hero-accent,
.page-hero-shell .page-hero-media {
  position: absolute;
}

.page-hero-shell .page-hero-overlay-primary,
.page-hero-shell .page-hero-overlay-secondary {
  inset: 0;
}

.page-hero-shell .page-hero-accent {
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #f5bc16, rgba(245, 188, 22, 0.8), transparent);
}

.page-hero-shell .page-hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  padding: 48px 32px;
}

.page-hero-shell.page-hero-with-media .page-hero-inner {
  width: min(100%, 62%);
}

.page-hero-shell .page-hero-media {
  right: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 32px;
  z-index: 1;
  pointer-events: none;
}

.page-hero-shell .page-hero-media img {
  width: auto;
  max-width: 100%;
  max-height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(245, 188, 22, 0.22));
}

.page-hero-copy {
  color: #e2e8f0;
}

.page-hero-copy > :first-child {
  margin-top: 0;
}

.page-hero-copy > * + * {
  margin-top: 16px;
}

.page-hero-copy .page-hero-eyebrow,
.page-hero-copy [data-hero-eyebrow] {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fcd34d;
}

.page-hero-copy .page-hero-eyebrow::before,
.page-hero-copy [data-hero-eyebrow]::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(245, 188, 22, 0.28);
  box-shadow: inset 0 0 0 1px rgba(245, 188, 22, 0.42);
}

.page-hero-copy h1,
.page-hero-copy .page-hero-title {
  margin-top: 18px;
  font-size: clamp(30px, 6vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-weight: 800;
  color: #ffffff;
}

.page-hero-copy h2 {
  font-size: clamp(26px, 5vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-weight: 800;
  color: #ffffff;
}

.page-hero-copy p,
.page-hero-copy li,
.page-hero-copy .page-hero-text {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.65;
  color: #cbd5e1;
}

.page-hero-copy strong {
  color: #ffffff;
}

.page-hero-copy ul,
.page-hero-copy ol,
.page-hero-copy .page-hero-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.page-hero-copy li {
  position: relative;
  padding-left: 14px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.page-hero-copy li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #f5bc16;
}

.page-hero-copy .page-hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 24px;
  margin-top: 28px;
}

.page-hero-copy .page-hero-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-hero-copy .page-hero-metric-value {
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
}

.page-hero-copy .page-hero-metric-label {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #94a3b8;
}

.page-hero-copy .page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-hero-copy .page-hero-actions a,
.page-hero-copy .page-hero-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
}

.page-hero-copy .page-hero-actions .btn-accent,
.page-hero-copy .page-hero-actions button.btn-accent {
  color: #111827;
}

.page-hero-copy .page-hero-actions .hero-secondary-btn,
.page-hero-copy .page-hero-actions button.hero-secondary-btn {
  color: #334155;
}

.hero-secondary-btn:hover {
  border-color: #cfd5df;
  transform: translateY(-1px);
}

.home-cta-shell {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: #0b1222;
}

.home-cta-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.55s ease;
}

.site-cta-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 360px;
  max-width: 760px;
  padding: 26px 0;
  text-align: left;
}

.site-cta-eyebrow {
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7dd3fc;
}

.site-cta-title {
  max-width: 760px;
  margin-top: 20px;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  font-weight: 800;
}

.site-cta-copy {
  max-width: 620px;
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.6;
  color: #cbd5e1;
}

.site-newsletter-grid {
  display: grid;
  gap: 28px;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
}

.site-cta-note {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
}

@media (max-width: 767px) {
  .page-hero-shell .page-hero-inner,
  .page-hero-shell.page-hero-with-media .page-hero-inner {
    width: 100%;
    padding: 40px 24px;
  }

  .page-hero-shell .page-hero-media {
    width: 52%;
    padding-right: 12px;
    align-items: flex-end;
    padding-bottom: 18px;
    opacity: 0.3;
  }

  .page-hero-shell .page-hero-media img {
    max-height: 210px;
  }

  .page-hero-copy p,
  .page-hero-copy li,
  .page-hero-copy .page-hero-text {
    font-size: 15px;
  }

  .page-hero-copy .page-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

.site-cta-privacy {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.6;
  color: #64748b;
}

.site-newsletter-title {
  margin-top: 2px;
  font-size: clamp(30px, 4.2vw, 40px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-weight: 800;
  color: #0f172a;
}

.site-newsletter-copy {
  margin-top: 16px;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.65;
  color: #334155;
}

.site-newsletter-safe {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: #475569;
}

.site-newsletter-safe-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dcfce7;
  color: #166534;
  font-size: 12px;
  font-weight: 700;
}

.site-cta-privacy-link {
  color: #334155;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-cta-privacy-link:hover {
  color: #0f172a;
}

.site-cta-light {
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  background: #f7f8fb;
}

.site-cta-light .site-cta-eyebrow {
  color: #b45309;
}

.site-cta-light .site-cta-title {
  color: #0f172a;
}

.site-cta-light .site-cta-copy {
  color: #334155;
}

.site-cta-static {
  min-height: auto;
  display: block;
}

.site-cta-static .site-cta-card {
  min-height: auto;
  max-width: none;
  padding: 0;
}

.site-cta-light .site-cta-note,
.site-cta-light .site-cta-privacy {
  color: #64748b;
}

.site-footer-light {
  background: #ffffff;
  color: #334155;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.site-footer-light h4 {
  color: #0f172a;
}

.site-footer-light .text-slate-100,
.site-footer-light .text-slate-300,
.site-footer-light .text-slate-400,
.site-footer-light .text-slate-500 {
  color: #64748b;
}

.site-footer-light .hover\:text-white:hover {
  color: #0f172a;
}

.site-footer-light .footer-menu-divider {
  height: 1px;
  width: 100%;
  margin: 6px 0;
  background: rgba(203, 213, 225, 0.7);
}

.site-footer-light .support-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer-light .support-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #64748b;
  transition: color 0.2s ease;
}

.site-footer-light .support-contact-link:hover {
  color: #0f172a;
}

.site-footer-light .support-contact-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  flex: 0 0 20px;
}

.site-footer-light .support-contact-icon svg {
  width: 18px;
  height: 18px;
}

.site-footer-light .support-contact-text {
  line-height: 1.35;
}

.site-footer-light .support-contact-note {
  color: #64748b;
}

.site-footer-light .social-pill-inverse {
  border-color: #d8dde6;
  color: #475569;
  background: #ffffff;
}

.site-footer-light .social-pill-inverse:hover {
  border-color: #f7b500;
  color: #111827;
  background: #fff9e8;
}

.modal-backdrop {
  background: rgba(17, 24, 39, 0.68);
}

[data-modal] {
  display: none !important;
}

[data-modal].open {
  display: block !important;
  position: fixed;
  inset: 0;
  z-index: 10000;
  padding: 16px;
}

.modal-card {
  position: relative;
  z-index: 10010;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 26px 65px rgba(15, 23, 42, 0.22);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border: 1px solid #dde2ea;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #697285;
  background: #fff;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.social-pill {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid #d8dde6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  background: #fff;
  transition: all 0.2s ease;
}

.social-pill svg {
  width: 16px;
  height: 16px;
}

.social-pill:hover {
  border-color: #f7b500;
  color: #111827;
  transform: translateY(-1px);
}

.social-pill-inverse {
  border-color: rgba(148, 163, 184, 0.24);
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.55);
}

.social-pill-inverse:hover {
  border-color: rgba(245, 188, 22, 0.7);
  color: #fff;
  background: rgba(30, 41, 59, 0.9);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.metric-item {
  border-right: 1px solid var(--wash-border);
}

.metric-item:last-child {
  border-right: none;
}

.catalog-btn {
  background: linear-gradient(90deg, var(--wash-accent), var(--wash-accent-dark));
  color: #111827;
  box-shadow: 0 8px 18px rgba(245, 188, 22, 0.22);
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
}

.catalog-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(242, 159, 5, 0.3);
}

.product-media-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  padding: 0;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
  overflow: hidden;
  flex-shrink: 0;
}

.product-media-image {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center center;
  transform: scale(1);
  transition: transform 0.5s ease;
  will-change: transform;
}

@keyframes catalog-zoom-cycle {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.22); }
  100% { transform: scale(1); }
}

.wash-card:hover .product-media-image {
  animation: catalog-zoom-cycle 2.2s ease-in-out infinite;
  transition: none;
}

.extra-media-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 210px;
  padding: 0;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
  overflow: hidden;
  flex-shrink: 0;
}

.extra-media-image {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center center;
  transform: scale(1);
  transition: transform 0.5s ease;
  will-change: transform;
}

.wash-card:hover .extra-media-image {
  animation: catalog-zoom-cycle 2.2s ease-in-out infinite;
  transition: none;
}

.marquee-slider {
  position: relative;
  overflow: hidden;
}

.marquee-slider::before,
.marquee-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  z-index: 1;
  pointer-events: none;
}

.marquee-slider::before {
  left: 0;
  background: linear-gradient(90deg, #f8fafc 0%, rgba(248, 250, 252, 0) 100%);
}

.marquee-slider::after {
  right: 0;
  background: linear-gradient(270deg, #f8fafc 0%, rgba(248, 250, 252, 0) 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}

.extra-electronics-section .marquee-track {
  align-items: stretch;
}

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

.marquee-card {
  width: min(360px, calc(100vw - 48px));
}

.extra-electronics-section .marquee-card {
  min-height: 100%;
}

.extra-electronics-section .wash-card h3 {
  min-height: 60px;
}

.extra-electronics-section .wash-card p {
  min-height: 42px;
}

.extra-electronics-section .marquee-card h3 {
  min-height: 60px;
}

.extra-electronics-section .marquee-card p {
  min-height: 42px;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 10px));
  }
}

.loc-tab-active {
  border-bottom-color: #f59e0b;
}

.loc-tab-active .section-eyebrow {
  color: #1e293b;
}

.contact-input {
  width: 100%;
  border: 1px solid var(--wash-border);
  border-radius: 12px;
  background: #fff;
  padding: 14px 16px;
  color: #334155;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
  font-size: 14px;
}

.contact-input:focus {
  border-color: #f0c13a;
  box-shadow: 0 0 0 3px rgba(245, 188, 22, 0.14);
}

.contact-input::placeholder {
  color: #cbd5e1;
}

@media (max-width: 1024px) {
  .product-media-frame {
    height: 185px;
  }

  .extra-media-frame {
    height: 185px;
  }

  .home-cta-shell {
    min-height: 460px;
  }

  .site-newsletter-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }
}

@media (max-width: 767px) {
  [data-slider] {
    min-height: 460px !important;
  }

  .inner-hero .grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .inner-hero .grid > * {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  [data-slider] > .relative.z-10 {
    min-height: inherit;
    padding-top: 24px !important;
    padding-bottom: 68px !important;
    align-items: flex-end;
  }

  [data-slider] .hero-animate {
    max-width: 100%;
    min-width: 0;
  }

  [data-slider] .hero-animate h1,
  [data-slider] .hero-main-title,
  [data-slider] h1.hero-main-title {
    font-size: clamp(24px, 8vw, 32px) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.02em !important;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  [data-slider] .hero-animate p {
    margin-top: 12px !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    max-width: 100%;
  }

  [data-slider] .hero-animate .btn-accent,
  [data-slider] .hero-animate .hero-secondary-btn {
    width: 100%;
    justify-content: center;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  [data-slider] [data-slider-dot] {
    width: 12px !important;
    height: 12px !important;
  }

  .hero-main-title {
    font-size: clamp(24px, 7.6vw, 31px);
    line-height: 1.02;
    letter-spacing: -0.02em;
  }

  .inner-hero {
    border-radius: 18px;
  }

  .hero-bleed-inner {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .kpi-pill {
    font-size: 11px;
    padding: 7px 10px;
  }

  .home-cta-shell {
    min-height: 420px;
  }

  .site-cta-card {
    min-height: 300px;
    padding: 16px 0 28px;
  }

  .site-cta-copy {
    font-size: 16px;
  }

  .site-newsletter-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .extra-media-frame {
    height: 185px;
  }

  .extra-media-image {
    object-position: center;
  }

  .extra-media-frame + h3 {
    min-height: 38px;
  }

  .extra-electronics-section .marquee-card h3,
  .extra-electronics-section .wash-card h3 {
    min-height: 56px;
  }

  .extra-electronics-section .marquee-card p,
  .extra-electronics-section .wash-card p {
    min-height: 42px;
  }

  .marquee-slider::before,
  .marquee-slider::after {
    width: 24px;
  }

  .marquee-track {
    gap: 16px;
  }

  .marquee-card {
    width: min(300px, calc(100vw - 32px));
  }

  .grid.lg\:grid-cols-\[1fr_1fr_1fr_1\.9fr\] > article:last-child img {
    min-height: 250px;
  }

}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .site-cta-card {
    min-height: 300px;
    padding: 36px 20px;
  }

  .site-cta-copy {
    font-size: 16px;
  }

  .metric-item {
    border-right: none;
    border-bottom: 1px solid var(--wash-border);
  }

  .metric-item:last-child {
    border-bottom: none;
  }

  .section-title {
    font-size: clamp(23px, 7.2vw, 32px);
    line-height: 1.04;
    letter-spacing: -0.02em;
  }
}
