/* ============================================================
   Odessa LED Solutions — Complete redesign
   Modern commercial lighting aesthetic
   ============================================================ */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Core palette — cool, professional, LED-evocative */
  --ods-navy:       #0C1117;
  --ods-navy-mid:   #151D27;
  --ods-navy-light: #1E293B;
  --ods-slate-900:  #0F172A;
  --ods-slate-700:  #334155;
  --ods-slate-500:  #64748B;
  --ods-slate-400:  #94A3B8;
  --ods-slate-300:  #CBD5E1;
  --ods-slate-200:  #E2E8F0;
  --ods-slate-100:  #F1F5F9;
  --ods-slate-50:   #F8FAFC;
  --ods-white:      #FFFFFF;

  /* Brand accent — teal/cyan (LED light feel) */
  --ods-teal:       #0891B2;
  --ods-teal-dark:  #0E7490;
  --ods-teal-light: #06B6D4;
  --ods-teal-glow:  rgba(6, 182, 212, 0.15);

  /* CTA — bold but not garish */
  --ods-cta:        #0891B2;
  --ods-cta-hover:  #0E7490;

  /* Warm accent for warranty/highlight numbers */
  --ods-amber:      #D97706;
  --ods-amber-light:#F59E0B;
  --ods-amber-glow: rgba(245, 158, 11, 0.12);

  /* Status */
  --ods-green:      #059669;
  --ods-green-bg:   rgba(5, 150, 105, 0.1);
  --ods-soldout:    #94A3B8;
  --ods-soldout-bg: rgba(148, 163, 184, 0.1);

  /* Functional */
  --ods-body:       #334155;
  --ods-heading:    #0F172A;
  --ods-muted:      #64748B;
  --ods-surface:    #F8FAFC;
  --ods-border:     #E2E8F0;
  --ods-border-dark:rgba(255, 255, 255, 0.08);

  /* Bootstrap overrides */
  --bs-primary: var(--ods-teal);
  --bs-primary-rgb: 8, 145, 178;
  --bs-dark: var(--ods-navy);
  --bs-dark-rgb: 12, 17, 23;
  --bs-body-color: var(--ods-body);
  --bs-body-font-family: "Inter", system-ui, -apple-system, sans-serif;
  --bs-link-color: var(--ods-teal);
  --bs-link-hover-color: var(--ods-teal-dark);
  --bs-border-radius: 12px;

  /* Shadows */
  --ods-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --ods-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  --ods-shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.1);
  --ods-shadow-glow: 0 0 40px rgba(6, 182, 212, 0.15);

  /* Transitions */
  --ods-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ods-dur: 300ms;
}

/* ---------- 2. Base ---------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ods-body);
  background: var(--ods-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3 {
  font-family: "Inter Tight", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--ods-heading);
}
h1, .h1 { font-size: clamp(2.5rem, 5.5vw, 4.25rem); }
h2, .h2 { font-size: clamp(1.875rem, 3.8vw, 3rem); }
h3, .h3 { font-size: 1.375rem; }

.ods-lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ods-slate-500);
}
.ods-mono {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, monospace;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.ods-eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ods-teal);
  margin-bottom: 0.75rem;
}
.text-muted-2 { color: var(--ods-muted) !important; }

/* Policy pages */
.policy-body { max-width: 720px; }
.policy-body h2 { font-size: 1.5rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--ods-border); }
.policy-body h2:first-of-type { border-top: none; padding-top: 0; }
.policy-body h3 { font-size: 1.125rem; margin-top: 1.5rem; }
.policy-body ul { padding-left: 1.25rem; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -48px;
  left: 0;
  z-index: 2000;
  padding: 10px 16px;
  background: var(--ods-navy);
  color: #fff;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  transition: top 120ms ease;
}
.skip-link:focus { top: 0; }

/* Focus */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.form-check-input:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible,
.nav-link:focus-visible {
  outline: 2px solid var(--ods-teal-light);
  outline-offset: 2px;
  box-shadow: none;
}

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

/* ---------- 3. Buttons ---------- */
.btn {
  border-radius: 10px;
  min-height: 44px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--ods-dur) var(--ods-ease);
}
.btn-ods-primary {
  background: var(--ods-cta);
  border: 1px solid var(--ods-cta);
  color: #fff;
  box-shadow: 0 2px 8px rgba(8, 145, 178, 0.25);
}
.btn-ods-primary:hover,
.btn-ods-primary:focus-visible {
  background: var(--ods-cta-hover);
  border-color: var(--ods-cta-hover);
  color: #fff;
  box-shadow: 0 4px 16px rgba(8, 145, 178, 0.35);
  transform: translateY(-1px);
}
.btn-ods-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
}
.btn-ods-outline-light:hover,
.btn-ods-outline-light:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.btn-ods-outline-dark {
  border: 1px solid var(--ods-slate-300);
  color: var(--ods-slate-700);
  background: transparent;
}
.btn-ods-outline-dark:hover,
.btn-ods-outline-dark:focus-visible {
  background: var(--ods-slate-50);
  border-color: var(--ods-slate-400);
  color: var(--ods-heading);
}

/* ---------- 4. Utility bar ---------- */
.ods-utility {
  background: var(--ods-navy);
  color: var(--ods-slate-400);
  font-size: 0.75rem;
  border-bottom: 1px solid var(--ods-border-dark);
}
.ods-utility a { color: var(--ods-slate-400); text-decoration: none; }
.ods-utility a:hover { color: #fff; }

/* ---------- 5. Header / navbar ---------- */
.ods-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--ods-border);
  transition: box-shadow var(--ods-dur) ease;
}
.ods-header.scrolled { box-shadow: var(--ods-shadow); }
.ods-header .navbar { min-height: 72px; padding-top: 0; padding-bottom: 0; }
.ods-header .ods-wordmark {
  font-family: "Inter Tight", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ods-heading);
  text-decoration: none;
}
.ods-header .ods-wordmark:hover { color: var(--ods-heading); }
.ods-header .navbar .nav-link {
  color: var(--ods-slate-500);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.5rem 0.875rem;
  border-radius: 8px;
  transition: color 150ms, background 150ms;
}
.ods-header .navbar .nav-link:hover,
.ods-header .navbar .nav-link:focus {
  color: var(--ods-heading);
  background: var(--ods-slate-50);
}

/* Mega menu */
.ods-mega {
  border: 1px solid var(--ods-border);
  border-radius: 16px;
  box-shadow: var(--ods-shadow-lg);
  padding: 1.5rem;
  min-width: 700px;
  background: var(--ods-white);
}
.ods-mega .ods-mega-col-title {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ods-muted);
  margin-bottom: 0.5rem;
}
.ods-mega .dropdown-item {
  border-radius: 8px;
  padding: 0.4rem 0.75rem;
  color: var(--ods-body);
  font-size: 0.9375rem;
}
.ods-mega .dropdown-item:hover,
.ods-mega .dropdown-item:focus {
  background: var(--ods-slate-50);
  color: var(--ods-teal);
}
.ods-mega .ods-mega-footer {
  border-top: 1px solid var(--ods-border);
  margin-top: 1rem;
  padding-top: 0.75rem;
}
.ods-mega .ods-mega-footer a { color: var(--ods-teal); text-decoration: none; font-weight: 600; }
.ods-mega .ods-mega-footer a:hover { text-decoration: underline; }

/* Offcanvas mobile nav */
.ods-offcanvas {
  border-left: 1px solid var(--ods-border);
  width: 320px;
}
.ods-offcanvas .accordion-button {
  font-weight: 600;
  color: var(--ods-heading);
  font-size: 0.9375rem;
}
.ods-offcanvas .accordion-button:not(.collapsed) {
  background: var(--ods-slate-50);
  color: var(--ods-teal);
  box-shadow: none;
}
.ods-offcanvas .nav-link,
.ods-offcanvas .accordion-body a {
  color: var(--ods-body);
}
.ods-offcanvas .accordion-body a {
  display: block;
  padding: 0.375rem 0;
  text-decoration: none;
  font-size: 0.9375rem;
}
.ods-offcanvas .accordion-body a:hover { color: var(--ods-teal); }

/* ---------- 6. Hero (home) ---------- */
.ods-hero {
  position: relative;
  background: var(--ods-navy);
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (min-width: 992px) { .ods-hero { min-height: 92vh; } }

.ods-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ods-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 15% 50%, rgba(12, 17, 23, 0.92), transparent 70%),
    linear-gradient(180deg, rgba(12, 17, 23, 0.7) 0%, rgba(12, 17, 23, 0.3) 50%, rgba(12, 17, 23, 0.85) 100%);
}
.ods-hero .ods-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.ods-hero h1 {
  color: #fff;
  text-wrap: balance;
  max-width: 14ch;
}
.ods-hero .ods-lead { color: var(--ods-slate-300); }

/* Trust row */
.ods-trust-row {
  color: var(--ods-slate-400);
  font-size: 0.875rem;
}
.ods-trust-row .bi { color: var(--ods-teal-light); margin-right: 0.25rem; }

/* ---------- 7. Light lines (decorative) ---------- */
.ods-glow-line {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent 0%, var(--ods-teal-light) 50%, transparent 100%);
  opacity: 0.5;
  box-shadow: 0 0 20px var(--ods-teal-glow);
  margin: 0;
}

/* ---------- 8. Sections ---------- */
.ods-section { padding: 5rem 0; }
@media (min-width: 992px) { .ods-section { padding: 6.5rem 0; } }
.ods-section-sm { padding: 3.5rem 0; }
@media (min-width: 992px) { .ods-section-sm { padding: 4.5rem 0; } }

.ods-bg-surface { background: var(--ods-slate-50); }
.ods-bg-dark {
  background: var(--ods-navy);
  color: var(--ods-slate-300);
}
.ods-bg-dark h1, .ods-bg-dark h2, .ods-bg-dark h3,
.ods-bg-dark h4, .ods-bg-dark .h1, .ods-bg-dark .h2, .ods-bg-dark .h3 {
  color: #fff;
}

/* Section header pattern */
.ods-section-header {
  max-width: 640px;
}
.ods-section-header.text-center {
  margin-left: auto;
  margin-right: auto;
}

/* Stat strip */
.ods-stat-strip {
  border-top: 1px solid var(--ods-border);
  border-bottom: 1px solid var(--ods-border);
}
.ods-stat-value {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-weight: 500;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--ods-heading);
  line-height: 1;
}
.ods-stat-unit { color: var(--ods-teal); }
.ods-stat-label {
  color: var(--ods-muted);
  font-size: 0.875rem;
  line-height: 1.4;
  margin-top: 0.375rem;
}

/* ---------- 9. Cards ---------- */
.ods-card {
  background: var(--ods-white);
  border: 1px solid var(--ods-border);
  border-radius: 16px;
  transition: transform var(--ods-dur) var(--ods-ease), box-shadow var(--ods-dur) var(--ods-ease);
}
.ods-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ods-shadow-lg);
}
.ods-card .ods-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--ods-teal-glow);
  color: var(--ods-teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Icon tile (applications) */
.ods-icon-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  border: 1px solid var(--ods-border);
  border-radius: 16px;
  background: var(--ods-white);
  padding: 1.5rem 1rem;
  height: 100%;
  text-align: center;
  transition: transform var(--ods-dur) var(--ods-ease), box-shadow var(--ods-dur) var(--ods-ease), border-color var(--ods-dur);
}
.ods-icon-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--ods-shadow-lg);
  border-color: var(--ods-teal-light);
}
.ods-icon-tile .ods-tile-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--ods-teal-glow);
  color: var(--ods-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
}
.ods-icon-tile span.lbl { color: var(--ods-heading); font-weight: 600; font-size: 0.9375rem; }

/* ---------- 10. Warranty badge ---------- */
.ods-warranty-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.ods-warranty-badge .num {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-weight: 500;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  line-height: 1;
  color: #fff;
}
.ods-warranty-badge .unit {
  display: block;
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  color: var(--ods-amber-light);
  text-transform: uppercase;
}
.ods-warranty-badge .divider {
  width: 1px;
  align-self: stretch;
  min-height: 80px;
  background: linear-gradient(180deg, transparent, rgba(6, 182, 212, 0.5), transparent);
}
.ods-warranty-mini {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--ods-border);
  border-radius: 999px;
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ods-heading);
  background: var(--ods-white);
}
.ods-warranty-mini .bi { color: var(--ods-green); }

/* ---------- 11. Product cards ---------- */
.ods-product-card {
  position: relative;
  background: var(--ods-white);
  border: 1px solid var(--ods-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--ods-dur) var(--ods-ease), box-shadow var(--ods-dur) var(--ods-ease);
  height: 100%;
}
.ods-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ods-shadow-lg);
}

.ods-product-media {
  position: relative;
  background: var(--ods-slate-50);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.ods-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  transition: transform 400ms var(--ods-ease);
}
.ods-product-card:hover .ods-product-media img { transform: scale(1.05); }
.ods-product-card.is-soldout .ods-product-media img { opacity: 0.5; filter: grayscale(0.7); }

.ods-pill {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  z-index: 2;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.ods-pill-instock { background: var(--ods-green-bg); color: var(--ods-green); }
.ods-pill-soldout { background: var(--ods-soldout-bg); color: var(--ods-muted); }

.ods-product-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.ods-product-cat {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ods-teal);
}
.ods-product-name { font-size: 1.0625rem; font-weight: 700; color: var(--ods-heading); }
.ods-product-name a { color: inherit; text-decoration: none; }
.ods-product-name a:hover { color: var(--ods-teal); }
.ods-product-specs {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--ods-muted);
  margin: 0;
}
.ods-product-link {
  margin-top: auto;
  padding-top: 1rem;
  color: var(--ods-teal);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.ods-product-link:hover { color: var(--ods-teal-dark); }
.ods-product-link .bi { transition: transform 200ms ease; }
.ods-product-link:hover .bi { transform: translateX(3px); }

/* ---------- 12. Catalog ---------- */
.ods-filter-chip {
  border: 1px solid var(--ods-border);
  background: var(--ods-white);
  color: var(--ods-slate-500);
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  min-height: 44px;
  transition: all 200ms ease;
  cursor: pointer;
}
.ods-filter-chip:hover { border-color: var(--ods-teal); color: var(--ods-teal); }
.ods-filter-chip.active {
  background: var(--ods-navy);
  border-color: var(--ods-navy);
  color: #fff;
}
.ods-mobile-scroller {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ods-mobile-scroller::-webkit-scrollbar { display: none; }
.ods-mobile-scroller > * { scroll-snap-align: start; flex: 0 0 auto; }
@media (min-width: 768px) { .ods-mobile-scroller { overflow: visible; flex-wrap: wrap; } }

/* Spec sheet table */
.ods-spec-table {
  border: 1px solid var(--ods-border);
  border-radius: 16px;
  overflow: hidden;
}
.ods-spec-table table { margin-bottom: 0; }
.ods-spec-table thead th {
  background: var(--ods-navy);
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  padding: 0.875rem 1rem;
  border: 0;
}
.ods-spec-table tbody td { vertical-align: middle; font-size: 0.9375rem; padding: 0.75rem 1rem; }

/* ---------- 13. Comparison table ---------- */
.ods-compare-card { height: 100%; }
.ods-compare-card table { font-size: 0.9375rem; }
.ods-compare-card th { width: 38%; color: var(--ods-muted); font-weight: 500; }

/* ---------- 14. Kelvin strip ---------- */
.ods-kelvin-strip {
  width: 100%;
  max-width: 300px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffb46b 0%, #ffd8a8 25%, #fff1e0 50%, #f4f8ff 75%, #d6e6ff 100%);
  position: relative;
}
.ods-kelvin-strip.has-markers .ods-kelvin-marker {
  position: absolute;
  top: -5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2.5px solid var(--ods-heading);
  background: #fff;
  transform: translateX(-50%);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.ods-kelvin-labels {
  display: flex;
  justify-content: space-between;
  max-width: 300px;
  font-size: 0.625rem;
  color: var(--ods-muted);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}

/* ---------- 15. Page hero (inner pages) ---------- */
.ods-page-hero {
  position: relative;
  background: var(--ods-navy);
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 3rem;
}
.ods-page-hero .ods-page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.ods-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 17, 23, 0.95) 0%, rgba(12, 17, 23, 0.7) 100%);
}
.ods-page-hero .container { position: relative; z-index: 2; color: #fff; }
.ods-page-hero h1 {
  color: #fff;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  text-wrap: balance;
}
.ods-page-hero .ods-eyebrow { margin-bottom: 0.5rem; }

/* Breadcrumb */
.ods-breadcrumb { font-size: 0.8125rem; }
.ods-breadcrumb .breadcrumb-item + .breadcrumb-item::before { content: "/"; color: var(--ods-slate-500); }
.ods-breadcrumb a { color: var(--ods-slate-400); text-decoration: none; }
.ods-breadcrumb a:hover { color: #fff; text-decoration: underline; }
.ods-breadcrumb-light .breadcrumb-item.active { color: var(--ods-slate-400); }
.ods-breadcrumb-page { font-size: 0.8125rem; margin-bottom: 0; }
.ods-breadcrumb-page .breadcrumb-item + .breadcrumb-item::before { content: "/"; color: var(--ods-slate-300); }
.ods-breadcrumb-page a { color: var(--ods-muted); text-decoration: none; }
.ods-breadcrumb-page a:hover { color: var(--ods-teal); text-decoration: underline; }
.ods-breadcrumb-page .breadcrumb-item.active { color: var(--ods-muted); }

/* ---------- 16. Product detail ---------- */
.ods-gallery {
  background: var(--ods-slate-50);
  border: 1px solid var(--ods-border);
  border-radius: 16px;
  overflow: hidden;
}
.ods-gallery .carousel-item img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: contain;
  padding: 2.5rem;
}
.ods-gallery .carousel-indicators [data-bs-target] {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  border: 2px solid transparent;
  opacity: 0.5;
}
.ods-gallery .carousel-indicators .active { border-color: var(--ods-teal); opacity: 1; }
.ods-gallery .carousel-indicators { position: static; margin: 0.75rem 0; }

.ods-spec-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border: 1px solid var(--ods-border);
  border-radius: 999px;
  padding: 0.375rem 0.75rem;
  font-size: 0.8125rem;
  background: var(--ods-white);
  color: var(--ods-body);
}
.ods-spec-chip .bi { color: var(--ods-teal); font-size: 0.875rem; }

.ods-tabs .nav-link {
  color: var(--ods-muted);
  font-weight: 600;
  font-size: 0.9375rem;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 0.75rem 1.25rem;
}
.ods-tabs .nav-link:hover { color: var(--ods-heading); }
.ods-tabs .nav-link.active {
  color: var(--ods-teal);
  border-bottom-color: var(--ods-teal);
  background: transparent;
}

.ods-spec-stripes tbody tr:nth-child(odd) { background: var(--ods-slate-50); }
.ods-spec-stripes th[scope="row"] { color: var(--ods-muted); font-weight: 500; width: 45%; }
.ods-spec-stripes td { font-weight: 500; }
.ods-spec-stripes td.ods-mono { font-size: 0.875rem; }

.ods-warning-callout {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: 12px;
}
.ods-warning-callout .bi { color: var(--ods-amber); }

.ods-download-card {
  border: 1px solid var(--ods-border);
  border-radius: 12px;
  transition: box-shadow var(--ods-dur) ease;
}
.ods-download-card:hover { box-shadow: var(--ods-shadow); }
.ods-download-card .bi-file-earmark-pdf { font-size: 1.75rem; color: #DC2626; }

/* Numbered promises */
.ods-promise-num {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--ods-teal-light);
  line-height: 1;
  opacity: 0.6;
}

/* Install steps */
.ods-step-num {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--ods-teal);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-weight: 500;
  flex: 0 0 auto;
  font-size: 0.875rem;
}

/* ---------- 17. CTA band ---------- */
.ods-cta-band {
  position: relative;
  background: var(--ods-navy);
  color: var(--ods-slate-300);
  overflow: hidden;
}
.ods-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 120% at 50% 0%, var(--ods-teal-glow), transparent 70%);
  pointer-events: none;
}
.ods-cta-band h2 { color: #fff; }

/* ---------- 18. Footer ---------- */
.ods-footer {
  background: var(--ods-navy);
  color: var(--ods-slate-400);
}
.ods-footer h6 {
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.ods-footer a { color: var(--ods-slate-400); text-decoration: none; }
.ods-footer a:hover { color: #fff; text-decoration: underline; }
.ods-footer .ods-footer-legal { font-size: 0.875rem; }
.ods-footer-bottom {
  border-top: 1px solid var(--ods-border-dark);
  font-size: 0.8125rem;
  color: var(--ods-slate-500);
}
.ods-wordmark-footer {
  font-family: "Inter Tight", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

/* ---------- 19. Forms ---------- */
.form-label { font-weight: 500; color: var(--ods-heading); font-size: 0.9375rem; }
.form-control, .form-select {
  border-radius: 10px;
  border-color: var(--ods-slate-200);
  padding: 0.625rem 0.875rem;
  font-size: 0.9375rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--ods-teal);
  box-shadow: 0 0 0 3px var(--ods-teal-glow);
}

/* ---------- 20. TOC (policy pages) ---------- */
.ods-toc {
  position: sticky;
  top: 100px;
  border-left: 2px solid var(--ods-border);
  padding-left: 1.25rem;
}
.ods-toc-title {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ods-muted);
  margin-bottom: 0.75rem;
}
.ods-toc a {
  display: block;
  padding: 0.3rem 0;
  color: var(--ods-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 150ms;
}
.ods-toc a:hover { color: var(--ods-teal); }

/* ---------- 21. Misc ---------- */
.ods-ul-badge-sm { height: 22px; width: auto; }
.ods-404-line {
  height: 4px;
  border-radius: 999px;
  max-width: 400px;
  margin: 0 auto;
  background: linear-gradient(90deg, var(--ods-teal) 0%, var(--ods-teal-light) 55%, rgba(255, 255, 255, 0.1) 55.5%, rgba(255, 255, 255, 0.1) 100%);
  box-shadow: 0 0 24px var(--ods-teal-glow);
}

/* Feature image with overlay */
.ods-feature-img {
  border-radius: 16px;
  overflow: hidden;
}
.ods-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Smooth scrollbar on dark sections */
.ods-bg-dark ::-webkit-scrollbar { width: 6px; height: 6px; }
.ods-bg-dark ::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 3px; }

/* Dark callout banner (return policy top, legal "have a problem?") */
.ods-callout {
  background: linear-gradient(135deg, var(--ods-navy-mid) 0%, var(--ods-navy-light) 100%);
  border: 1px solid rgba(6, 182, 212, 0.35);
  border-radius: 16px;
  box-shadow: var(--ods-shadow-glow);
  color: var(--ods-slate-300);
  padding: 2rem;
  text-align: center;
}
.ods-callout .ods-eyebrow { color: var(--ods-teal-light); }
.ods-callout-title {
  color: var(--ods-white);
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.ods-callout-sub { font-size: 1.05rem; max-width: 34rem; margin-left: auto; margin-right: auto; }
.ods-callout-btn {
  font-size: 1.2rem;
  font-weight: 700;
  padding: 1rem 2.25rem;
  width: 100%;
  max-width: 26rem;
}
.ods-callout-note { font-size: 0.9rem; color: var(--ods-slate-400); }
.ods-callout-note a { color: var(--ods-teal-light); }
@media (max-width: 575.98px) { .ods-callout { padding: 1.5rem 1.25rem; } }

/* Quick application page (apply.html): mobile-first */
.apply-page { background: var(--ods-surface); min-height: 100vh; }
.apply-topbar { background: var(--ods-white); border-bottom: 1px solid var(--ods-border); padding: 0.9rem 0; }
.apply-topbar .ods-wordmark-footer { font-size: 1.1rem; margin: 0; color: var(--ods-heading); }
.apply-wrap { max-width: 560px; margin: 0 auto; padding: 1.25rem 1rem 4rem; }
.apply-intro h1 { font-size: clamp(1.6rem, 6vw, 2.1rem); margin-bottom: 0.5rem; }
.apply-step { background: var(--ods-white); border: 1px solid var(--ods-border); border-radius: 16px; padding: 1.25rem; margin-top: 1rem; box-shadow: var(--ods-shadow-sm); }
.apply-step-num { display: inline-flex; align-items: center; justify-content: center; width: 1.75rem; height: 1.75rem; border-radius: 50%; background: var(--ods-teal); color: #fff; font-weight: 700; font-size: 0.9rem; margin-right: 0.5rem; }
.apply-step h2 { font-size: 1.15rem; display: flex; align-items: center; margin-bottom: 0.75rem; }
.apply-step .form-control, .apply-step .form-select { font-size: 1.05rem; padding: 0.8rem 0.9rem; }
.apply-step .btn { min-height: 3rem; font-size: 1.05rem; }
.apply-stack { display: grid; gap: 0.6rem; }
.apply-choice { display: flex; align-items: center; gap: 0.75rem; border: 1px solid var(--ods-border); border-radius: 12px; padding: 0.85rem 1rem; cursor: pointer; background: var(--ods-white); font-size: 1.05rem; }
.apply-choice:has(input:checked) { border-color: var(--ods-teal); background: var(--ods-teal-glow); }
.apply-choice input { width: 1.25rem; height: 1.25rem; margin: 0; flex: none; }
.apply-sub { border-left: 3px solid var(--ods-teal); padding-left: 1rem; margin-top: 1rem; }
.apply-sub .form-label { font-weight: 600; }
.apply-stage { position: relative; background: var(--ods-navy); border-radius: 14px; overflow: hidden; aspect-ratio: 1 / 1; max-width: 320px; margin: 0 auto 0.85rem; display: flex; align-items: center; justify-content: center; }
.apply-stage video, .apply-stage img { width: 100%; height: 100%; object-fit: cover; }
.apply-stage video { transform: scaleX(-1); }
.apply-stage .apply-stage-hint { color: var(--ods-slate-400); text-align: center; padding: 1rem; font-size: 0.95rem; }
.apply-stage.has-media .apply-stage-hint, .apply-stage:has(video:not([hidden])) .apply-stage-hint { display: none; }
.apply-rec-stage { background: var(--ods-navy); border-radius: 14px; padding: 1.25rem; text-align: center; color: var(--ods-slate-300); margin-bottom: 0.85rem; }
.apply-rec-stage.is-recording { box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.35) inset; }
.apply-rec-timer { font-family: 'IBM Plex Mono', monospace; font-size: 2rem; color: #fff; }
.apply-rec-timer::before { content: ''; display: inline-block; width: 0.7rem; height: 0.7rem; border-radius: 50%; background: #DC2626; margin-right: 0.5rem; animation: apply-blink 1s infinite; vertical-align: middle; }
@keyframes apply-blink { 50% { opacity: 0.2; } }
.apply-rec-stage audio { width: 100%; margin-top: 0.5rem; }
.apply-script { background: var(--ods-slate-50); border: 1px dashed var(--ods-slate-300); border-radius: 12px; padding: 1rem; font-size: 1.05rem; line-height: 1.6; margin-bottom: 0.85rem; }
.apply-script strong { color: var(--ods-teal-dark); }
.apply-upload { display: block; text-align: center; font-size: 0.95rem; margin-top: 0.6rem; color: var(--ods-muted); }
.apply-upload input { display: none; }
.apply-upload span { text-decoration: underline; cursor: pointer; color: var(--ods-teal-dark); }
.apply-status { font-size: 0.95rem; margin-top: 0.6rem; padding: 0.6rem 0.8rem; border-radius: 10px; background: var(--ods-slate-100); color: var(--ods-body); }
.apply-status-ok { background: var(--ods-green-bg); color: var(--ods-green); }
.apply-status-warn { background: var(--ods-amber-glow); color: var(--ods-amber); }
.apply-note { background: var(--ods-navy-mid); color: var(--ods-slate-300); border-radius: 14px; padding: 1.1rem 1.25rem; margin-top: 1rem; font-size: 1rem; }
.apply-note strong { color: #fff; }
.apply-submit { width: 100%; font-size: 1.15rem; font-weight: 700; padding: 1rem; margin-top: 1rem; }
.apply-done { background: var(--ods-white); border: 1px solid var(--ods-border); border-radius: 16px; padding: 2rem 1.25rem; text-align: center; margin-top: 1rem; }
.apply-done i { font-size: 3rem; color: var(--ods-green); }
