/*!
  LABTECH24 — Design System
  Custom properties, typography, layout and component styles.
  Loaded after bootstrap.min.css and bootstrap-icons.css.
*/

/* ---------------------------------------------------------------------- */
/* 1. Design tokens                                                       */
/* ---------------------------------------------------------------------- */
:root {
  --lt-navy: #073B7A;
  --lt-navy-dark: #052a59;
  --lt-blue: #1155A3;
  --lt-red: #E21D2A;
  --lt-red-dark: #b91621;
  --lt-sky: #DCEEFF;
  --lt-light: #F4F9FD;
  --lt-white: #FFFFFF;
  --lt-text: #172333;
  --lt-muted: #5D6977;
  --lt-border: #D9E2EA;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;

  --shadow-sm: 0 4px 18px rgba(7, 59, 122, .07);
  --shadow-md: 0 10px 35px rgba(7, 59, 122, .10);

  --section-space: clamp(64px, 8vw, 110px);
  --section-space-sm: clamp(40px, 5vw, 64px);

  --font-heading: 'Manrope', Arial, Helvetica, sans-serif;
  --font-body: 'Inter', Arial, Helvetica, sans-serif;

  /* Bootstrap variable overrides — only variables Bootstrap's compiled CSS
     actually reads via var() at the root/body/link level. Component-level
     tokens (e.g. --bs-btn-bg, --bs-accordion-active-bg) are baked into
     bootstrap.min.css at build time and are NOT derived from --bs-primary,
     so brand color always goes through our own .btn-primary-red /
     .text-navy / etc. classes instead — never Bootstrap's *-primary or
     *-danger utilities. */
  --bs-body-color: var(--lt-text);
  --bs-body-font-family: var(--font-body);
  --bs-link-color: var(--lt-blue);
  --bs-link-hover-color: var(--lt-navy);
}

/* ---------------------------------------------------------------------- */
/* 2. Base / typography                                                   */
/* ---------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}

/* overflow-x:hidden here (not on body too) is deliberate: setting it on
   BOTH html and body triggers a CSS spec quirk where the other axis
   (overflow-y) gets silently promoted from 'visible' to 'auto' on each one
   independently, producing two nested scroll containers and a large blank
   scrollable area below the real content. One root-level scroll container
   (html) is enough to stop horizontal overflow without that side effect. */
html {
  max-width: 100%;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--lt-text);
  background-color: var(--lt-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-heading);
  color: var(--lt-navy);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.18;
}

h1, .h1 { font-size: clamp(2.1rem, 1.6rem + 2.1vw, 3.625rem); font-weight: 800; }
h2, .h2 { font-size: clamp(1.7rem, 1.45rem + 1.2vw, 2.625rem); font-weight: 800; }
h3, .h3 { font-size: clamp(1.3rem, 1.15rem + 0.7vw, 1.875rem); font-weight: 700; }
h4, .h4 { font-size: clamp(1.15rem, 1.05rem + 0.4vw, 1.375rem); font-weight: 700; }

p { line-height: 1.7; }

.lead {
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.2rem);
  color: var(--lt-muted);
  font-weight: 400;
  line-height: 1.65;
}

.text-muted-lt { color: var(--lt-muted) !important; }
.text-navy { color: var(--lt-navy) !important; }
.text-blue { color: var(--lt-blue) !important; }
.text-red { color: var(--lt-red) !important; }
.bg-navy { background-color: var(--lt-navy) !important; }
.bg-blue { background-color: var(--lt-blue) !important; }
.bg-sky { background-color: var(--lt-sky) !important; }
.bg-light-lt { background-color: var(--lt-light) !important; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lt-blue);
  margin-bottom: 0.85rem;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--lt-red);
  border-radius: 2px;
}

.section {
  padding-block: var(--section-space);
}

.section-sm {
  padding-block: var(--section-space-sm);
}

.section-head {
  max-width: 720px;
  margin-bottom: 2.75rem;
}

.section-head.mx-auto {
  text-align: center;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 2000;
  background: var(--lt-navy);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 12px;
  color: #fff;
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn:focus-visible,
.nav-link:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--lt-blue);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------------------------------------------------------------------- */
/* 3. Buttons                                                             */
/* ---------------------------------------------------------------------- */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 0.7rem 1.4rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
  line-height: 1.2;
}

.btn-lg { padding: 0.85rem 1.9rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1rem; min-height: 38px; font-size: 0.9rem; }

.btn-primary-red {
  background-color: var(--lt-red);
  border: 1px solid var(--lt-red);
  color: #fff;
}
.btn-primary-red:hover,
.btn-primary-red:focus {
  background-color: var(--lt-red-dark);
  border-color: var(--lt-red-dark);
  color: #fff;
}

.btn-outline-navy {
  background-color: transparent;
  border: 1.5px solid var(--lt-navy);
  color: var(--lt-navy);
}
.btn-outline-navy:hover,
.btn-outline-navy:focus {
  background-color: var(--lt-navy);
  color: #fff;
}

.btn-outline-blue {
  background-color: transparent;
  border: 1.5px solid var(--lt-blue);
  color: var(--lt-blue);
}
.btn-outline-blue:hover,
.btn-outline-blue:focus {
  background-color: var(--lt-blue);
  color: #fff;
}

.btn-navy-solid {
  background-color: var(--lt-navy);
  border: 1px solid var(--lt-navy);
  color: #fff;
}
.btn-navy-solid:hover,
.btn-navy-solid:focus {
  background-color: var(--lt-navy-dark);
  border-color: var(--lt-navy-dark);
  color: #fff;
}

.btn-outline-white {
  background-color: transparent;
  border: 1.5px solid rgba(255,255,255,.7);
  color: #fff;
}
.btn-outline-white:hover,
.btn-outline-white:focus {
  background-color: #fff;
  color: var(--lt-navy);
}

.btn-link-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--lt-blue);
  text-decoration: none;
  padding: 0.2rem 0;
  border-bottom: 1px solid transparent;
}
.btn-link-icon:hover {
  color: var(--lt-navy);
  border-bottom-color: currentColor;
}
.btn-link-icon .bi { transition: transform .15s ease; }
.btn-link-icon:hover .bi-arrow-right { transform: translateX(3px); }

/* ---------------------------------------------------------------------- */
/* 4. Utility strip + header                                              */
/* ---------------------------------------------------------------------- */
.utility-strip {
  background-color: var(--lt-navy-dark);
  color: #eaf2fb;
  font-size: 0.85rem;
}
.utility-strip a { color: #eaf2fb; text-decoration: none; }
.utility-strip a:hover { color: #fff; text-decoration: underline; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: #fff;
  border-bottom: 1px solid var(--lt-border);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.navbar-brand-lt img { height: 40px; width: auto; display: block; }

/* True center nav: Bootstrap's `.navbar > .container` uses
   justify-content:space-between across 3 unequal-width children (logo,
   nav links, phone/CTA group), which visually skews the centered nav off
   true-center whenever the two side groups differ in width. Grid with a
   flexible middle column keeps the nav centered regardless. The middle
   column uses minmax(0,1fr) — not plain 1fr — so it can shrink below the
   nav's natural content width instead of forcing the grid to overflow the
   viewport; .main-nav-collapse below makes that safe by scrolling its own
   contents rather than clipping them. Mobile keeps Bootstrap's default
   flex behavior (only 2-3 small items visible there). */
@media (min-width: 992px) {
  .site-header .navbar > .container {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 1rem;
  }
}

/* Safety net: seven nav links at comfortable padding don't always fit
   between the logo and the phone/Book actions, even at wide desktop sizes.
   Rather than tune breakpoint-by-breakpoint, let this row scroll internally
   (contain:paint stops it from ever affecting page-level scroll size) —
   in practice the tightened padding below means it only scrolls at the
   narrow end of the desktop range. */
.main-nav-collapse {
  overflow-x: auto;
  overflow-y: hidden;
  contain: paint;
  scrollbar-width: thin;
}

.main-nav .nav-link {
  color: var(--lt-navy);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 0.6rem 0.5rem !important;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.main-nav .nav-link:hover,
.main-nav .nav-link:focus,
.main-nav .nav-link.active {
  color: var(--lt-blue);
  background-color: var(--lt-light);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--lt-navy);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
}
.header-phone .bi { color: var(--lt-red); font-size: 1.1rem; }
.header-phone:hover { color: var(--lt-blue); }

/* Offcanvas mobile nav */
.offcanvas-lt .offcanvas-header { border-bottom: 1px solid var(--lt-border); }
.offcanvas-lt .accordion-button {
  font-weight: 700;
  color: var(--lt-navy);
  background: #fff;
}
.offcanvas-lt .accordion-button:not(.collapsed) {
  background: var(--lt-light);
  color: var(--lt-navy);
  box-shadow: none;
}
.offcanvas-lt .nav-link {
  color: var(--lt-text);
  padding: 0.65rem 0.25rem;
  font-weight: 600;
  border-bottom: 1px solid var(--lt-border);
}

/* ---------------------------------------------------------------------- */
/* 5. Cards & components                                                  */
/* ---------------------------------------------------------------------- */
.card-lt {
  background: #fff;
  border: 1px solid var(--lt-border);
  border-radius: var(--radius-md);
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.card-lt.card-hover:hover {
  box-shadow: var(--shadow-md);
  border-color: #c3d9ee;
  transform: translateY(-2px);
}

.badge-lt {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  text-transform: uppercase;
}
.badge-category {
  background: var(--lt-sky);
  color: var(--lt-navy);
}
.badge-prep {
  background: #FFF1D6;
  color: #7A4E00;
}

.test-card { height: 100%; display: flex; flex-direction: column; }
.test-card .card-body { display: flex; flex-direction: column; flex: 1; padding: 1.5rem; }
.test-card .test-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--lt-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.test-price {
  font-size: 0.82rem;
  color: var(--lt-muted);
  font-weight: 500;
}

.category-tile {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.75rem 1.5rem;
  background: var(--lt-light);
  border: 1px solid var(--lt-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--lt-text);
  height: 100%;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}
.category-tile:hover {
  background-color: var(--lt-sky);
  border-color: #c3d9ee;
  color: var(--lt-text);
  transform: translateY(-2px);
}
.category-tile .cat-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--lt-navy);
  border: 1px solid var(--lt-border);
}
.category-tile .cat-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--lt-navy);
  font-size: 1.02rem;
}
.category-tile .cat-desc {
  color: var(--lt-muted);
  font-size: 0.88rem;
  margin: 0;
}

/* Steps (How it works) */
.step-item {
  position: relative;
  padding-top: 0.25rem;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--lt-navy);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-line {
  flex: 1;
  height: 2px;
  background: var(--lt-border);
  margin-top: 24px;
}

/* Business / staffing editorial list */
.editorial-item {
  display: flex;
  gap: 1rem;
  padding-block: 1.4rem;
  border-bottom: 1px solid var(--lt-border);
}
.editorial-item:last-child { border-bottom: none; }
.editorial-item .bi {
  color: var(--lt-blue);
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Testimonial placeholder */
.testimonial-card {
  background: var(--lt-light);
  border: 1px dashed var(--lt-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  height: 100%;
}
.testimonial-card .placeholder-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lt-muted);
  font-weight: 700;
}

/* FAQ accordion */
.accordion-lt .accordion-item {
  border: 1px solid var(--lt-border);
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  margin-bottom: 0.85rem;
}
.accordion-lt .accordion-button {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--lt-navy);
  background: #fff;
  padding: 1.1rem 1.35rem;
}
.accordion-lt .accordion-button:not(.collapsed) {
  background: var(--lt-sky) !important;
  color: var(--lt-navy) !important;
  box-shadow: none !important;
}
.accordion-lt .accordion-button:focus {
  box-shadow: none;
  outline: 3px solid var(--lt-blue);
  outline-offset: -3px;
}
.accordion-lt .accordion-button:focus:not(:focus-visible) {
  outline: none;
}
.accordion-lt .accordion-body {
  color: var(--lt-muted);
  padding: 0.25rem 1.35rem 1.35rem;
  line-height: 1.7;
}

/* Booking finder panel */
.booking-finder {
  background: #fff;
  border: 1px solid var(--lt-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.25rem, 3vw, 2rem);
  position: relative;
  z-index: 3;
}

/* Booking stepper */
.booking-steps {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  gap: 0.25rem;
  flex-wrap: wrap;
}
.booking-steps li {
  flex: 1 1 auto;
  min-width: 90px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--lt-muted);
  position: relative;
  padding-top: 42px;
}
.booking-steps li::before {
  content: attr(data-step);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--lt-light);
  border: 2px solid var(--lt-border);
  color: var(--lt-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
}
.booking-steps li.is-active { color: var(--lt-navy); }
.booking-steps li.is-active::before {
  background: var(--lt-navy);
  border-color: var(--lt-navy);
  color: #fff;
}
.booking-steps li.is-complete::before {
  background: var(--lt-blue);
  border-color: var(--lt-blue);
  color: #fff;
  content: "\F633";
  font-family: "bootstrap-icons";
  font-size: 0.9rem;
}

.booking-panel { display: none; }
.booking-panel.is-active { display: block; }

.option-card {
  border: 1.5px solid var(--lt-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  cursor: pointer;
  height: 100%;
  transition: border-color .15s ease, background-color .15s ease;
}
.option-card:hover { border-color: var(--lt-blue); }
.option-card input:checked ~ .option-card-inner,
.option-card.is-selected {
  border-color: var(--lt-blue);
}
input.option-input:checked + label.option-card {
  border-color: var(--lt-blue);
  background-color: var(--lt-sky);
}
input.option-input:focus-visible + label.option-card {
  outline: 3px solid var(--lt-blue);
  outline-offset: 2px;
}

.time-slot {
  border: 1.5px solid var(--lt-border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.4rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.86rem;
  background: #fff;
  cursor: pointer;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
input.slot-input:checked + label.time-slot {
  background: var(--lt-navy);
  border-color: var(--lt-navy);
  color: #fff;
}
input.slot-input:focus-visible + label.time-slot {
  outline: 3px solid var(--lt-blue);
  outline-offset: 2px;
}
.time-slot[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Forms */
.form-label {
  font-weight: 600;
  color: var(--lt-text);
  margin-bottom: 0.4rem;
}
.form-label .req { color: var(--lt-red); }
.form-control, .form-select {
  border: 1.5px solid var(--lt-border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  min-height: 46px;
}
textarea.form-control { min-height: 120px; }
.form-control:focus, .form-select:focus {
  border-color: var(--lt-blue);
  box-shadow: 0 0 0 3px rgba(17, 85, 163, 0.15);
}
.form-text { color: var(--lt-muted); font-size: 0.83rem; }
.form-section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--lt-navy);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--lt-border);
}
.invalid-feedback { font-weight: 500; }
.form-control.is-invalid, .form-select.is-invalid { border-color: var(--lt-red); }

.form-panel {
  background: var(--lt-light);
  border: 1px solid var(--lt-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 4vw, 2.5rem);
}

/* Breadcrumbs */
.breadcrumb-lt {
  --bs-breadcrumb-divider: '›';
  font-size: 0.85rem;
}
.breadcrumb-lt a { color: var(--lt-muted); text-decoration: none; }
.breadcrumb-lt a:hover { color: var(--lt-blue); text-decoration: underline; }
.breadcrumb-lt .active { color: var(--lt-navy); font-weight: 600; }

/* Alerts */
.alert-lt-info {
  background: var(--lt-sky);
  border: 1px solid #bfe0fb;
  color: var(--lt-navy);
  border-radius: var(--radius-md);
}
.alert-lt-success {
  background: #E7F6EC;
  border: 1px solid #bfe6cc;
  color: #145A32;
  border-radius: var(--radius-md);
}
.alert-lt-error {
  background: #FDEBEC;
  border: 1px solid #f5c2c6;
  color: #7A1620;
  border-radius: var(--radius-md);
}

/* CTA band */
.cta-band {
  background: var(--lt-navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #dce8f7; }

/* Footer */
.site-footer {
  background: var(--lt-navy-dark);
  color: #cfe0f2;
}
.site-footer a { color: #cfe0f2; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-heading {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.55rem; font-size: 0.9rem; }
.site-footer hr { border-color: rgba(255,255,255,.15); }
.footer-bottom { font-size: 0.82rem; color: #9db6d1; }
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.social-icon:hover { background: rgba(255,255,255,.12); }

/* Back to top */
.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--lt-navy);
  color: #fff;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 1040;
}
.back-to-top.is-visible { display: flex; }
@media (max-width: 767.98px) {
  /* Clear the sticky mobile Call/Book bar (56px tall) so the two controls don't overlap. */
  .back-to-top { bottom: calc(56px + 1rem); }
}

/* Mobile sticky CTA bar */
.mobile-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1045;
  display: none;
  border-top: 1px solid var(--lt-border);
  background: #fff;
  box-shadow: 0 -6px 20px rgba(7,59,122,.12);
}
.mobile-cta-bar .btn { border-radius: 0; flex: 1; min-height: 56px; font-size: 0.95rem; }
@media (max-width: 767.98px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 56px; }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1050;
  max-width: 620px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid var(--lt-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  display: none;
}
.cookie-banner.is-visible { display: block; }
@media (max-width: 767.98px) {
  .cookie-banner { bottom: 64px; }
}

/* Utility: skip decorative asymmetry lines */
.brand-line-detail {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

/* Hero */
.hero-media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-info-panel {
  position: absolute;
  left: -1.25rem;
  bottom: -1.25rem;
  background: #fff;
  border: 1px solid var(--lt-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 1.1rem 1.35rem;
  max-width: 260px;
}
@media (max-width: 991.98px) {
  /* The two-column hero layout only applies at lg+ (col-lg-6); below that
     the image is full-width and the panel's negative left offset would
     otherwise poke outside the container. */
  .hero-info-panel { position: static; margin-top: -2rem; max-width: none; }
}
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-top: 1.5rem;
}
.hero-trust-row .item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--lt-navy);
}
.hero-trust-row .bi { color: var(--lt-blue); font-size: 1.15rem; }

/* Catalog list view */
.catalog-list-view { display: block !important; }
.catalog-list-view .test-card-col { width: 100%; max-width: none; margin-bottom: 1rem; }
.catalog-list-view .test-card { flex-direction: row; }
.catalog-list-view .card-body { flex-direction: column; justify-content: center; }
@media (max-width: 575.98px) {
  .catalog-list-view .test-card { flex-direction: column; }
}

/* Finder chips */
.finder-chip {
  border: 1.5px solid var(--lt-border);
  background: #fff;
  color: var(--lt-navy);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-weight: 600;
  font-size: 0.85rem;
}
.finder-chip.active,
.finder-chip:hover {
  background: var(--lt-navy);
  border-color: var(--lt-navy);
  color: #fff;
}

/* Pagination */
.pagination-lt .page-link {
  color: var(--lt-navy);
  border-color: var(--lt-border);
}
.pagination-lt .page-item.active .page-link {
  background-color: var(--lt-navy);
  border-color: var(--lt-navy);
}

/* Table -> card conversion on mobile */
@media (max-width: 767.98px) {
  .table-lt-responsive thead { display: none; }
  .table-lt-responsive tr {
    display: block;
    border: 1px solid var(--lt-border);
    border-radius: var(--radius-md);
    padding: 0.9rem 1rem;
    margin-bottom: 0.85rem;
  }
  .table-lt-responsive td {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border: none !important;
    padding: 0.35rem 0 !important;
    text-align: right;
  }
  .table-lt-responsive td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--lt-navy);
    text-align: left;
  }
}

/* Print */
@media print {
  .site-header, .site-footer, .mobile-cta-bar, .back-to-top, .cookie-banner, .utility-strip { display: none !important; }
}
