/* ==========================================================================
   Glacier Robotics â€” Design System
   Accent: #E85D04 | Light clean commercial
   ========================================================================== */

:root {
  --orange: #e85d04;
  --orange-hover: #d45303;
  --orange-soft: #fff4ed;
  --orange-border: rgba(232, 93, 4, 0.28);

  --bg: #f8f7f4;
  --bg-soft: #f1f0ec;
  --white: #ffffff;

  --ink: #1a1a1a;
  --heading: #121212;
  --muted: #5c5c5c;
  --muted-soft: #8a8a8a;

  --line: rgba(26, 26, 26, 0.08);
  --line-strong: rgba(26, 26, 26, 0.12);
  --shadow: 0 4px 20px rgba(26, 26, 26, 0.06);
  --shadow-hover: 0 10px 28px rgba(26, 26, 26, 0.1);

  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --display: "Outfit", "DM Sans", system-ui, sans-serif;

  --max: 1120px;
  --header-h: 80px;
  --radius: 12px;
  --radius-lg: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px) + 20px);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

/* Highlight product/industry cards after nav jump */
.product-card:target,
.industry-item:target {
  border-color: var(--orange-border);
  box-shadow: var(--shadow-hover);
}

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

/* Lock scroll when mobile menu is open */
html.nav-open,
body.nav-open {
  overflow: hidden;
  touch-action: none;
}

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

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

ul,
ol {
  list-style: none;
}

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

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  max-width: 100%;
}

@media (max-width: 479px) {
  .container {
    width: min(100% - 1.5rem, var(--max));
  }
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  padding: 0.65rem 1rem;
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

/* --------------------------------------------------------------------------
   Type
   -------------------------------------------------------------------------- */

/* Section kicker â€” reads as a real heading, not tiny caps */
.eyebrow {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--orange);
  margin: 0 0 0.35rem;
  line-height: 1.25;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 600;
  color: var(--heading);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.15rem, 5vw, 3.15rem);
}

h2 {
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  margin-top: 0;
}

/* Keep short section titles on a single line when possible */
.heading-nowrap {
  white-space: nowrap;
}

@media (max-width: 720px) {
  .heading-nowrap {
    white-space: normal;
    font-size: clamp(1.35rem, 5.5vw, 1.75rem);
  }
}

h3 {
  font-size: 1.15rem;
}

.lead {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 40rem;
  margin-top: 0.5rem;
}

.section-intro {
  max-width: 40rem;
  margin-bottom: 1.5rem;
}

.section-intro.center {
  text-align: center;
  margin-inline: auto;
}

.section-intro.center .lead {
  margin-inline: auto;
}

.section-intro .eyebrow + h2 {
  margin-top: 0.15rem;
}

/* Full-width intro with heading + CTA on one row */
.section-intro-wide {
  max-width: none;
}

.section-heading-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  margin-bottom: 0.5rem;
}

.section-heading-row h2 {
  margin: 0;
  flex: 1 1 auto;
  min-width: min(100%, 12rem);
}

.section-heading-row .btn {
  flex: 0 0 auto;
}

.section-intro-wide .lead {
  margin-top: 0;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s,
    transform 0.2s var(--ease);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(232, 93, 4, 0.22);
}

.btn-primary:hover {
  background: var(--orange-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}

.btn-secondary:hover {
  background: var(--orange-soft);
}

.btn-lg {
  padding: 1rem 1.65rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  display: flex;
  align-items: center;
  background: rgba(248, 247, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 2px 16px rgba(26, 26, 26, 0.04);
}

.header-inner {
  width: min(100% - 1.25rem, var(--max));
  max-width: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  min-width: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  z-index: 110;
}

.logo img {
  /* Height-only sizing â€” never clamp width or the wide wordmark squashes */
  height: 48px;
  width: auto;
  max-width: none;
  object-fit: contain;
  background: transparent;
  display: block;
}

.logo-text {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--heading);
  letter-spacing: -0.02em;
}

.logo-text span {
  color: var(--orange);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

/* Legacy alias if needed */
.nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  transition: color 0.15s, background 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-link:hover,
.nav-item.has-dropdown:hover > .nav-link {
  color: var(--heading);
  background: var(--bg-soft);
}

/* Dropdowns (Products / Industries) */
.nav-item {
  position: relative;
}

.nav-item.has-dropdown > .nav-link::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.55;
  margin-top: 1px;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  padding: 0.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(26, 26, 26, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 120;
  pointer-events: none;
}

.nav-dropdown-products {
  min-width: 280px;
  max-width: 320px;
}

.nav-dropdown-about {
  min-width: 10.5rem;
}

/* Industries: 3 Ã— 3 grid â€” even columns, comfortable gaps, no wrap */
.nav-dropdown-industries {
  min-width: 0;
  width: max-content;
  max-width: min(34rem, calc(100vw - 2rem));
  padding: 0.45rem;
  left: auto;
  right: 0;
}

.nav-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  column-gap: 0.85rem;
  row-gap: 0.12rem;
  justify-content: start;
  align-items: start;
}

/* Bridge gap so mouse can move into menu without closing */
.nav-item.has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
}

.nav-item.has-dropdown:hover > .nav-dropdown,
.nav-item.has-dropdown:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown a {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--heading);
  opacity: 0.72;
  padding: 0.42rem 0.6rem;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.12s, color 0.12s, opacity 0.12s;
}

.nav-dropdown-industries .nav-dropdown-grid a {
  white-space: nowrap;
  line-height: 1.25;
  text-align: left;
  padding: 0.4rem 0.7rem;
}

.nav-dropdown-products a {
  white-space: normal;
  line-height: 1.3;
  padding: 0.48rem 0.65rem;
}

.nav-dropdown-products a strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--heading);
  opacity: 0.85;
  margin-bottom: 0.12rem;
  letter-spacing: -0.01em;
}

.nav-dropdown-products a span {
  display: block;
  font-size: 0.7rem;
  font-weight: 450;
  color: var(--muted);
  opacity: 0.78;
  line-height: 1.3;
}

.nav-dropdown a:hover {
  background: var(--orange-soft);
  color: var(--orange);
  opacity: 1;
}

.nav-dropdown-products a:hover strong {
  color: var(--orange);
  opacity: 1;
}

.nav-dropdown-products a:hover span {
  color: var(--heading);
  opacity: 0.9;
}

.nav-dropdown-all {
  display: block;
  margin-top: 0.25rem;
  border-top: 1px solid var(--line);
  border-radius: 0 0 8px 8px !important;
  color: var(--muted) !important;
  font-weight: 600 !important;
  font-size: 0.72rem !important;
  opacity: 0.7 !important;
  padding: 0.45rem 0.6rem !important;
  white-space: nowrap;
}

.nav-dropdown-all:hover {
  color: var(--orange) !important;
  opacity: 1 !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 110;
  position: relative;
  flex-shrink: 0;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  padding: 0 11px;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--heading);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ----- Mobile-only flat menu panel (no mega-menus) ----- */
.nav-mobile {
  display: none;
}

@media (min-width: 980px) {
  .nav-desktop {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .nav-mobile {
    display: none !important;
  }
}

@media (max-width: 979px) {
  :root {
    --header-h: 64px;
  }

  .site-header {
    width: 100%;
    max-width: 100vw;
  }

  .logo img {
    height: 34px;
    width: auto;
    max-width: none;
  }

  /* Phone stays visible; shrink on narrow screens */
  .header-actions .header-phone {
    display: inline-flex;
    font-size: 0.78rem;
    padding: 0.45rem 0.7rem;
    white-space: nowrap;
  }

  /* Desktop mega-nav never mounts on mobile */
  .nav-desktop {
    display: none !important;
  }

  .nav-mobile {
    position: fixed;
    inset: 0;
    z-index: 105;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0.2rem;
    padding:
      calc(var(--header-h) + env(safe-area-inset-top, 0px) + 1.25rem)
      1.25rem
      calc(1.5rem + env(safe-area-inset-bottom, 0px));
    background: var(--bg);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }

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

  .nav-mobile[hidden] {
    display: none !important;
  }

  .nav-mobile > a:not(.btn) {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--heading);
    padding: 0.95rem 0.75rem;
    border-radius: 10px;
    text-align: center;
  }

  .nav-mobile > a:not(.btn):active,
  .nav-mobile > a:not(.btn):hover {
    background: var(--bg-soft);
    color: var(--orange);
  }

  .nav-mobile .nav-mobile-call {
    margin-top: 1rem;
    width: 100%;
    max-width: 280px;
    align-self: center;
    justify-content: center;
  }

  .nav-mobile-group {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-top: 0.35rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--line);
  }

  .nav-mobile-group-label {
    display: block;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange);
    padding: 0.5rem 0.75rem 0.25rem;
  }

  .nav-mobile-group a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--heading);
    padding: 0.95rem 0.75rem;
    border-radius: 10px;
    text-align: center;
  }

  .nav-mobile-group a:active,
  .nav-mobile-group a:hover {
    background: var(--bg-soft);
    color: var(--orange);
  }
}

/* Very narrow phones: phone number can hide; hamburger always visible */
@media (max-width: 360px) {
  .header-actions .header-phone {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section {
  padding: clamp(2.25rem, 4.5vw, 3.25rem) 0;
}

.section-white {
  background: var(--white);
}

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

/* --------------------------------------------------------------------------
   Hero â€” cinematic frame (same side margins as page content)
   -------------------------------------------------------------------------- */

.hero {
  padding: calc(var(--header-h) + env(safe-area-inset-top, 0px) + 1.5rem) 0 2.25rem;
  background: var(--bg);
}

.hero-cinematic {
  padding:
    calc(var(--header-h) + env(safe-area-inset-top, 0px) + 1.5rem)
    0
    clamp(2rem, 4vw, 2.75rem);
  background: var(--bg);
}

/* Image + copy live inside the same container width as sections below */
.hero-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(26rem, 62vh, 36rem);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0c0c0e;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Bias right so the robot sits more in the open visual half */
  object-position: 62% 45%;
  display: block;
  /* Lift the source photo â€” facility shot is naturally dark */
  filter: brightness(1.28) contrast(1.06) saturate(1.08);
}

/* Scrim strongest on the left copy column only â€” keep robot clear */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      95deg,
      rgba(8, 8, 10, 0.78) 0%,
      rgba(8, 8, 10, 0.62) 28%,
      rgba(8, 8, 10, 0.22) 46%,
      rgba(8, 8, 10, 0.04) 58%,
      transparent 68%
    ),
    linear-gradient(
      to top,
      rgba(8, 8, 10, 0.28) 0%,
      transparent 42%
    );
  pointer-events: none;
}

.hero-cinematic .hero-copy {
  position: relative;
  z-index: 2;
  /* Left panel only â€” does not extend over the centered robot */
  width: min(100%, 28rem);
  max-width: 46%;
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  text-align: left;
  color: #fff;
}

.hero-cinematic .hero-copy h1 {
  margin-bottom: 0.65rem;
  max-width: 14ch;
  color: #fff;
  text-align: left;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
}

.hero-cinematic .hero-copy .lead {
  margin-top: 0;
  margin-bottom: 1.25rem;
  margin-inline: 0;
  color: rgba(255, 255, 255, 0.9);
  max-width: 26rem;
  text-align: left;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
}

.hero-cinematic .hero-actions {
  margin-top: 0;
  margin-bottom: 0;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 0.55rem;
}

.hero-cinematic .hero-actions .btn {
  padding: 0.55rem 0.95rem;
  font-size: 0.82rem;
  white-space: nowrap;
}

.hero-cinematic .hero-actions .btn-chevron {
  width: 15px;
  height: 15px;
}

@media (max-width: 420px) {
  .hero-cinematic .hero-actions {
    flex-wrap: wrap;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

/* Secondary buttons on dark photo */
.btn-on-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.btn-on-dark:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.btn-with-chevron {
  gap: 0.35rem;
}

.btn-chevron {
  flex-shrink: 0;
  display: block;
  margin-top: 1px;
}

.trust-line {
  font-size: 0.88rem;
  color: var(--muted-soft);
  font-weight: 500;
}

.trust-line span {
  color: var(--muted);
}

@media (max-width: 899px) {
  .hero-cinematic .hero-copy {
    max-width: 58%;
    width: auto;
  }
}

@media (max-width: 699px) {
  .hero-frame {
    min-height: clamp(22rem, 58vh, 28rem);
  }

  .hero-bg img {
    /* Keep robot more toward top-right so bottom copy panel is clear */
    object-position: 70% 35%;
  }

  .hero-scrim {
    background:
      linear-gradient(
        to top,
        rgba(8, 8, 10, 0.82) 0%,
        rgba(8, 8, 10, 0.55) 38%,
        rgba(8, 8, 10, 0.18) 70%,
        rgba(8, 8, 10, 0.06) 100%
      );
  }

  .hero-cinematic .hero-copy {
    max-width: none;
    width: 100%;
    padding-top: clamp(1.25rem, 4vw, 1.75rem);
  }

  .hero-cinematic .hero-copy h1 {
    max-width: 16ch;
  }
}

/* --------------------------------------------------------------------------
   Cards â€” problem strip
   -------------------------------------------------------------------------- */

.card-grid {
  display: grid;
  gap: 1rem;
}

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

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

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

@media (min-width: 640px) {
  .card-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (min-width: 900px) {
  .card-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease);
}

.card:hover {
  border-color: var(--orange-border);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--orange-soft);
  color: var(--orange);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

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

.card h3 {
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.card .benefit {
  margin-top: 0.9rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--heading);
}

.card .benefit span {
  color: var(--orange);
}

/* --------------------------------------------------------------------------
   Products
   -------------------------------------------------------------------------- */

.product-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease);
}

.product-card:hover {
  border-color: var(--orange-border);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.product-media {
  /* White matches the card so transparent CenoBots cutouts have no visible plate */
  background: var(--white);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.35rem 1.1rem;
  border-bottom: 1px solid var(--line);
}

.product-media img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  /* Soft ground shadow â€” cutouts read as product renders, not photo tiles */
  filter: drop-shadow(0 12px 20px rgba(28, 25, 23, 0.14));
}

.product-body {
  padding: 1.35rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.4rem;
}

.product-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.product-body > p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.specs {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.4rem;
}

.specs li {
  font-size: 0.85rem;
  color: var(--muted);
  padding-left: 0.85rem;
  position: relative;
  line-height: 1.4;
}

.specs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

.best-for {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}

.best-for strong {
  color: var(--heading);
  font-weight: 600;
}

.product-cta {
  display: inline-flex;
  margin-top: 1.15rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--orange);
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.15s, color 0.15s;
  align-self: flex-start;
}

.product-cta:hover {
  border-bottom-color: var(--orange);
  color: var(--orange-hover);
}

.range-note {
  margin-top: 1.25rem;
  padding: 1rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius);
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.55;
}

.range-note strong {
  color: var(--heading);
}

/* Mid-page conversion bands */
.convert-band {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 1.75rem;
  padding: 1.35rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.section-white .convert-band {
  background: var(--bg);
}

.convert-band-soft {
  background: var(--orange-soft);
  border-color: var(--orange-border);
  box-shadow: none;
}

.convert-band-copy {
  flex: 1 1 16rem;
  min-width: 0;
}

.convert-band-copy h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.convert-band-copy p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 36rem;
}

.convert-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  flex-shrink: 0;
}

.reply-line {
  display: inline;
  color: var(--heading);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Industries
   -------------------------------------------------------------------------- */

.industry-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.industry-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease);
  display: flex;
  flex-direction: column;
}

.industry-item:hover {
  border-color: var(--orange-border);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.industry-item.is-playing {
  border-color: var(--orange-border);
  box-shadow: var(--shadow-hover);
  transform: none;
}

.industry-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #111;
  overflow: hidden;
  cursor: pointer;
  border: 0;
  padding: 0;
  width: 100%;
}

.industry-thumb .thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.industry-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 18, 18, 0.5), rgba(18, 18, 18, 0.1));
  pointer-events: none;
  transition: opacity 0.2s;
}

.industry-thumb.is-playing::after,
.industry-thumb.is-playing .play-btn,
.industry-thumb.is-playing .watch-label,
.industry-thumb.is-playing .thumb-img {
  display: none;
}

.industry-thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.play-btn {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(232, 93, 4, 0.35);
  transition: transform 0.2s var(--ease), background 0.2s;
  pointer-events: none;
}

.play-btn svg {
  width: 22px;
  height: 22px;
  margin-left: 2px;
}

.industry-thumb:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.06);
  background: var(--orange-hover);
}

.watch-label {
  position: absolute;
  z-index: 2;
  left: 0.85rem;
  bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  pointer-events: none;
}

.industry-body {
  padding: 1.15rem 1.25rem 1.3rem;
}

.industry-item h3 {
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.industry-item p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   Why / split
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
  }
}

.check-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.9rem;
}

.check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.5;
}

.check-list strong {
  display: block;
  color: var(--heading);
  margin-bottom: 0.15rem;
}

.check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange);
  display: grid;
  place-items: center;
  margin-top: 0.1rem;
}

.check svg {
  width: 12px;
  height: 12px;
}

.stat-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.stat-row {
  display: grid;
  gap: 1.25rem;
}

.stat-row + .stat-row {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

@media (min-width: 480px) {
  .stat-row {
    grid-template-columns: 1fr 1fr;
  }
}

.stat-value {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.3rem;
  line-height: 1.4;
}

.stat-note {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--muted-soft);
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   ROI steps
   -------------------------------------------------------------------------- */

.process {
  display: grid;
  gap: 1.15rem;
  counter-reset: step;
}

@media (min-width: 800px) {
  .process {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.25rem;
}

.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--orange);
  margin-bottom: 0.85rem;
}

.process-step h3 {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}

.process-step p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   Support
   -------------------------------------------------------------------------- */

.support-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 700px) {
  .support-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --------------------------------------------------------------------------
   FAQ (AEO / SEO)
   -------------------------------------------------------------------------- */

.faq-list {
  max-width: 44rem;
  margin: 0 auto;
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--heading);
  padding: 1rem 1.15rem;
  position: relative;
  padding-right: 2.5rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "â€“";
}

.faq-item summary:hover {
  color: var(--orange);
}

.faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.faq-item a {
  color: var(--orange);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact-layout {
  display: grid;
  gap: 2rem;
}

.contact-layout-form {
  margin-top: 2.5rem;
}

.contact-form-intro h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.contact-form-intro p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

@media (min-width: 860px) {
  .contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.5rem;
    align-items: start;
  }
}

.cta-band .lead {
  margin-inline: auto;
  margin-bottom: 1.25rem;
}

.contact-info {
  display: grid;
  gap: 1rem;
}

.contact-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
}

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--muted-soft);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-item a,
.contact-item span {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--heading);
}

.contact-item a:hover {
  color: var(--orange);
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}

.form-card h2 {
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
}

.form-card > p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 560px) {
  .form-grid.two {
    grid-template-columns: 1fr 1fr;
  }
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 0.35rem;
}

.field label .req {
  color: var(--orange);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.12);
}

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

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%235c5c5c' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 6l3.5 3.5L11.5 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.25rem;
}

.form-note {
  margin-top: 0.85rem;
  font-size: 0.8rem;
  color: var(--muted-soft);
}

.form-success {
  display: none;
  text-align: center;
  padding: 1.5rem 0.5rem;
}

.form-success.is-visible {
  display: block;
}

.form-success h3 {
  margin-bottom: 0.4rem;
}

.form-success p {
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 1.25rem 0 calc(1.15rem + env(safe-area-inset-bottom, 0px));
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.5rem;
}

.footer-top .logo {
  flex-shrink: 0;
}

.footer-top .logo img {
  height: 28px;
  width: auto;
  max-width: none;
  display: block;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 1.1rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color 0.15s;
  white-space: nowrap;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.4rem 1.25rem;
  margin-top: 0.95rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.footer-copy,
.footer-tagline {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted-soft);
  line-height: 1.4;
}

.footer-tagline {
  text-align: right;
}

@media (max-width: 699px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .footer-tagline {
    text-align: left;
  }
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.cta-band {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  max-width: 28rem;
  margin-inline: auto 0;
  margin: 0 auto 0.75rem;
}

.cta-band .lead {
  margin-inline: auto;
  margin-bottom: 1.5rem;
}

.cta-band .hero-actions {
  justify-content: center;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Phase 1 — conversion, pricing, sticky bar, interior pages
   -------------------------------------------------------------------------- */

.product-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.75rem;
  margin: 0.65rem 0 0.35rem;
  font-variant-numeric: tabular-nums;
}
.product-price .msrp {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink, #121212);
}
.product-price .msrp span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted, #5c5c5c);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-right: 0.25rem;
}
.product-price .finance-hint {
  font-size: 0.8rem;
  color: var(--muted, #5c5c5c);
}
.product-cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.85rem;
}
.product-cta-row .product-cta,
.product-cta-row .btn {
  text-align: center;
  width: 100%;
}
.product-cta-row a.product-cta-secondary {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange, #e85d04);
  text-decoration: none;
  padding: 0.35rem;
}
.product-cta-row a.product-cta-secondary:hover {
  text-decoration: underline;
}
.product-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  margin-top: 0.5rem;
  font-size: 0.85rem;
}
.product-links a {
  font-weight: 600;
  color: var(--orange, #e85d04);
}

.aeo-answer {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-2, #333);
  max-width: 42rem;
  margin: 0 0 1.25rem;
}

.sticky-convert {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  gap: 0.4rem;
  padding: 0.55rem 0.65rem calc(0.55rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}
.sticky-convert .btn {
  flex: 1;
  justify-content: center;
  font-size: 0.78rem;
  padding: 0.7rem 0.4rem;
  white-space: nowrap;
}
@media (max-width: 979px) {
  .sticky-convert {
    display: flex;
  }
  body {
    padding-bottom: 4.5rem;
  }
}

.page-hero {
  padding: 2.5rem 0 1.5rem;
  background: var(--cream, #f8f7f4);
  border-bottom: 1px solid var(--line, rgba(26, 26, 26, 0.08));
}
.page-hero h1 {
  margin-bottom: 0.5rem;
}
.breadcrumb {
  font-size: 0.8rem;
  color: var(--muted, #5c5c5c);
  margin-bottom: 0.75rem;
}
.breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--orange, #e85d04);
}
.breadcrumb span[aria-hidden] {
  margin: 0 0.35rem;
  opacity: 0.5;
}

.pdp-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 900px) {
  .pdp-layout {
    grid-template-columns: 1.1fr 1fr;
  }
}
.pdp-media {
  background: #fff;
  border: 1px solid var(--line, rgba(26, 26, 26, 0.08));
  border-radius: var(--radius-lg, 12px);
  padding: 1.25rem;
  text-align: center;
}
.pdp-media img {
  max-width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
}
.pdp-video {
  margin-top: 1rem;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  position: relative;
}
.pdp-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.pdp-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.25rem 0;
}
@media (min-width: 560px) {
  .pdp-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .pdp-actions .btn {
    flex: 1;
    min-width: 10rem;
    justify-content: center;
  }
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.95rem;
}
.spec-table th,
.spec-table td {
  text-align: left;
  padding: 0.55rem 0.4rem;
  border-bottom: 1px solid var(--line, rgba(26, 26, 26, 0.08));
}
.spec-table th {
  width: 42%;
  color: var(--muted, #5c5c5c);
  font-weight: 600;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  overflow-x: auto;
  display: block;
}
.compare-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.compare-table th,
.compare-table td {
  padding: 0.65rem 0.5rem;
  border-bottom: 1px solid var(--line, rgba(26, 26, 26, 0.08));
  text-align: left;
  vertical-align: top;
}
.compare-table thead th {
  background: var(--orange, #e85d04);
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.compare-table tbody th {
  font-weight: 600;
}

.quote-builder {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 880px) {
  .quote-builder {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}
.quote-panel {
  background: #fff;
  border: 1px solid var(--line, rgba(26, 26, 26, 0.08));
  border-radius: var(--radius-lg, 12px);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow, 0 8px 24px rgba(0, 0, 0, 0.04));
}
.quote-panel h2 {
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}
.quote-option {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line, rgba(26, 26, 26, 0.08));
}
.quote-option:last-child {
  border-bottom: 0;
}
.quote-option input {
  margin-top: 0.25rem;
}
.quote-summary-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  font-size: 0.95rem;
}
.quote-summary-line.total {
  border-top: 2px solid var(--orange, #e85d04);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  font-weight: 700;
  font-size: 1.15rem;
}
.quote-note {
  font-size: 0.8rem;
  color: var(--muted, #5c5c5c);
  margin-top: 0.75rem;
}

.parts-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .parts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 980px) {
  .parts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.parts-card {
  background: #fff;
  border: 1px solid var(--line, rgba(26, 26, 26, 0.08));
  border-radius: var(--radius-lg, 12px);
  padding: 1.15rem 1.25rem;
}
.parts-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.parts-card .sku {
  font-size: 0.75rem;
  color: var(--muted, #5c5c5c);
  font-family: ui-monospace, monospace;
  margin-bottom: 0.5rem;
}
.parts-card .compat {
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
.badge-exclusive {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange, #e85d04);
  background: #fff4ed;
  border: 1px solid rgba(232, 93, 4, 0.25);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  margin-bottom: 0.75rem;
}

.form-success {
  display: none;
  padding: 1.25rem;
  background: #f0faf4;
  border: 1px solid #b7e0c8;
  border-radius: 8px;
}
.form-success.is-visible {
  display: block;
}
.form-error {
  display: none;
  color: #b42318;
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.video-rail {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .video-rail {
    grid-template-columns: repeat(3, 1fr);
  }
}
.video-rail-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line, rgba(26, 26, 26, 0.08));
  background: #111;
}
.video-rail-card .industry-thumb {
  aspect-ratio: 16 / 9;
  margin: 0;
}
.video-rail-card h3 {
  background: #fff;
  padding: 0.75rem 0.9rem;
  font-size: 0.95rem;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Product card foot — financing + Request Info menu
   -------------------------------------------------------------------------- */

.product-body > p {
  flex: 0 0 auto;
}

.product-foot {
  margin-top: auto;
  padding-top: 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.finance-line {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted, #5c5c5c);
  line-height: 1.35;
}

.finance-line strong {
  color: var(--heading, #121212);
  font-size: 1.15rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.finance-disclaimer {
  margin: 0.85rem 0 0;
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--muted, #5c5c5c);
  opacity: 0.9;
}

.request-info {
  position: relative;
  width: 100%;
}

.request-info-btn {
  width: 100%;
  justify-content: center;
}

.request-info-menu {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% + 0.4rem);
  z-index: 20;
  background: #fff;
  border: 1px solid var(--line, rgba(26, 26, 26, 0.1));
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(28, 25, 23, 0.14);
  padding: 0.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.request-info-menu[hidden] {
  display: none !important;
}

.request-info.is-open .request-info-menu {
  display: flex;
}

.request-info-menu a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--heading, #121212);
  text-decoration: none;
  line-height: 1.3;
}

.request-info-menu a:hover,
.request-info-menu a:focus {
  background: #fff4ed;
  color: var(--orange, #e85d04);
  outline: none;
}

.product-card {
  position: relative;
  z-index: 1;
}

.product-card:has(.request-info.is-open) {
  z-index: 5;
}

/* Honeypot — visually hidden from humans, still in the DOM for bots */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
