/* ============================================================
   JPR Exports — Hero Slider - COMPLETE FIX
   Right-aligned text fixed + subtle gradient overlay
   ============================================================ */

/* ----- Hero Section Base ----- */
.hero {
  position: relative;
  padding-top: var(--nav-h);
  background: transparent !important;
  color: var(--white);
  overflow: visible;
  min-height: auto;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding-bottom: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.hero .wrap {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

/* ----- Slider Container ----- */
.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1620 / 650;
  min-height: 340px;
  max-width: 100vw;
  overflow: hidden;
  background: transparent !important;
  margin: 0;
  padding: 0;
}

.hero-slider-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  background: transparent !important;
}

.hero-slides-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 1.2s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* ----- Slide Background - FULL IMAGE ----- */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1);
  transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide.is-active .hero-slide-bg {
  transform: scale(1.08);
}

/* REMOVE ALL OVERLAYS FROM BACKGROUND */
.hero-slide-bg::after,
.hero-slide-bg::before {
  display: none !important;
  content: none !important;
  background: none !important;
}

/* ----- SUBTLE GRADIENT OVERLAY ON THE SLIDE (not the background) ----- */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

/* Slightly different gradient for left-aligned slides */
.hero-slide[data-align="left"]::after {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 60%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

/* Slightly different gradient for right-aligned slides */
.hero-slide[data-align="right"]::after {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

/* Center-aligned gets a more balanced gradient */
.hero-slide[data-align="center"]::after {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.2) 30%,
    rgba(0, 0, 0, 0.2) 70%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

/* ----- Slide Content - TEXT ON TOP OF OVERLAY ----- */
.hero-slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 40px 60px;
  background: transparent !important;
}

/* Left Aligned */
.hero-slide[data-align="left"] .hero-slide-content {
  justify-content: flex-start;
  padding-left: 80px;
}
.hero-slide[data-align="left"] .hero-content {
  max-width: 520px;
  text-align: left;
  margin-right: auto;
}

/* Right Aligned */
.hero-slide[data-align="right"] .hero-slide-content {
  justify-content: flex-start;
  padding-right: 80px;
}
.hero-slide[data-align="right"] .hero-content {
  max-width: 520px;
  text-align: right;
  margin-left: auto;
}

/* Center Aligned */
.hero-slide[data-align="center"] .hero-slide-content {
  justify-content: center;
  text-align: center;
  padding-left: 60px;
  padding-right: 60px;
}
.hero-slide[data-align="center"] .hero-content {
  max-width: 600px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ----- Typography - CLEAN TEXT WITH SHADOW ----- */
.hero-eyebrow {
  font-family: 'Google Sans', 'Roboto', 'Arial', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-bright, #F0AC3E);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

/* Line before (left side) */
.hero-eyebrow::before {
  content: "";
  flex-shrink: 0;
  width: 30px;
  height: 2px;
  background: var(--orange-bright, #F0AC3E);
}

/* Line after (right side) */
.hero-eyebrow::after {
  content: "";
  flex-shrink: 0;
  width: 30px;
  height: 2px;
  background: var(--orange-bright, #F0AC3E);
}

/* ----- LEFT ALIGNED - Both lines, text left ----- */
.hero-slide[data-align="left"] .hero-eyebrow {
  justify-content: flex-start;
}

/* ----- RIGHT ALIGNED - Both lines, text RIGHT ----- */
.hero-slide[data-align="right"] .hero-eyebrow {
  justify-content: flex-start;
  flex-direction: row-reverse;
}
.hero-slide[data-align="right"] .hero-eyebrow::before {
  margin-left: 0;
  margin-right: 14px;
}
.hero-slide[data-align="right"] .hero-eyebrow::after {
  margin-right: 0;
  margin-left: 14px;
}
/* Force text to be right-aligned within the flex container */
.hero-slide[data-align="right"] .hero-eyebrow {
  text-align: right;
}
.hero-slide[data-align="right"] .hero-eyebrow .hero-eyebrow-text {
  text-align: right;
}
/* Since the text is just a text node, we need to wrap it or use a different approach */
.hero-slide[data-align="right"] .hero-eyebrow {
  justify-content: flex-start;
}

/* ----- CENTER ALIGNED - Both lines, text center ----- */
.hero-slide[data-align="center"] .hero-eyebrow {
  justify-content: center;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .hero-eyebrow {
    font-size: 9px;
    gap: 10px;
  }
  
  .hero-eyebrow::before,
  .hero-eyebrow::after {
    width: 20px;
  }
  
  /* Mobile - Center everything */
  .hero-slide[data-align="left"] .hero-eyebrow,
  .hero-slide[data-align="right"] .hero-eyebrow,
  .hero-slide[data-align="center"] .hero-eyebrow {
    justify-content: center;
    flex-direction: row;
  }
  
  .hero-slide[data-align="right"] .hero-eyebrow::before {
    margin-left: 0;
    margin-right: 10px;
  }
  .hero-slide[data-align="right"] .hero-eyebrow::after {
    margin-right: 0;
    margin-left: 10px;
  }
}

@media (max-width: 480px) {
  .hero-eyebrow {
    font-size: 8px;
    gap: 8px;
  }
  
  .hero-eyebrow::before,
  .hero-eyebrow::after {
    width: 14px;
    height: 1.5px;
  }
  
  .hero-slide[data-align="right"] .hero-eyebrow::before {
    margin-right: 8px;
  }
  .hero-slide[data-align="right"] .hero-eyebrow::after {
    margin-left: 8px;
  }
}

.hero-slide-kicker {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  text-shadow: 0 2px 20px rgba(0,0,0,0.7);
}

h1.hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  text-shadow: 0 2px 30px rgba(0,0,0,0.8);
  color: #ffffff;
}
h1.hero-title em {
  font-style: normal;
  color: var(--orange-bright, #F0AC3E);
}

.hero-sub {
  font-size: clamp(13px, 1vw, 16px);
  color: rgba(255,255,255,0.92);
  max-width: 420px;
  margin-bottom: 20px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  text-shadow: 0 2px 25px rgba(0,0,0,0.7);
}

/* Right-aligned sub text */
.hero-slide[data-align="right"] .hero-sub {
  margin-left: auto;
}

/* Center-aligned sub text */
.hero-slide[data-align="center"] .hero-sub {
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Center CTAs for center-aligned slides */
.hero-slide[data-align="center"] .hero-ctas {
  justify-content: center;
}
.hero-slide[data-align="right"] .hero-ctas {
  justify-content: flex-end;
}

/* ----- Buttons ----- */
.hero .btn-primary {
  background: var(--orange-bright, #F0AC3E);
  color: var(--navy-deep, #03275b);
  border: 2px solid var(--orange-bright, #F0AC3E);
  padding: 10px 24px;
  font-weight: 500;
  font-size: 12px;
  border-radius: 6px;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.hero .btn-primary:hover {
  background: #f8c16a;
  border-color: #f8c16a;
  transform: translateY(-2px) scale(1.02);
}

.hero .btn-outline {
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  background: rgba(0,0,0,0.15);
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 12px;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.hero .btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px) scale(1.02);
}

/* ----- Active Slide Animation ----- */
.hero-slide.is-active .hero-eyebrow,
.hero-slide.is-active .hero-slide-kicker,
.hero-slide.is-active h1.hero-title,
.hero-slide.is-active .hero-sub,
.hero-slide.is-active .hero-ctas {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.hero-slide.is-active .hero-eyebrow { transition-delay: 0.1s; }
.hero-slide.is-active .hero-slide-kicker { transition-delay: 0.1s; }
.hero-slide.is-active h1.hero-title { transition-delay: 0.25s; }
.hero-slide.is-active .hero-sub { transition-delay: 0.4s; }
.hero-slide.is-active .hero-ctas { transition-delay: 0.55s; }

/* ============================================================
   NAVIGATION BUTTONS - ON THE IMAGE
   ============================================================ */

.hero-nav-arrows {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  pointer-events: none;
}

.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0.8;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-nav-btn.prev { 
  left: 24px; 
}

.hero-nav-btn.next { 
  right: 24px; 
}

.hero-nav-btn:hover {
  background: var(--orange-bright, #F0AC3E);
  border-color: var(--orange-bright, #F0AC3E);
  color: var(--navy-deep, #03275b);
  transform: translateY(-50%) scale(1.12);
  opacity: 1;
  box-shadow: 0 0 40px rgba(240, 172, 62, 0.4);
}

.hero-nav-btn .nav-label {
  position: absolute;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: var(--navy-deep, #03275b);
}

.hero-nav-btn .nav-arrow {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-nav-btn:hover .nav-label {
  opacity: 1;
  transform: translateY(0);
}

.hero-nav-btn:hover .nav-arrow {
  opacity: 0;
  transform: translateY(-8px);
}

.hero-nav-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

/* ============================================================
   DOTS & COUNTER - ON THE IMAGE (BOTTOM)
   ============================================================ */

.hero-slider-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 20px 24px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 100%);
  pointer-events: none;
}

.hero-slider-controls > * {
  pointer-events: auto;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}
.hero-dot:hover {
  background: rgba(255,255,255,0.7);
  transform: scale(1.2);
}
.hero-dot.active {
  width: 36px;
  border-radius: 5px;
  background: var(--orange-bright, #F0AC3E);
}
.hero-dot.active::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 8px;
  border: 1px solid rgba(240, 172, 62, 0.3);
  animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.3; }
}

.hero-slide-counter {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  padding: 4px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero-slide-counter .current {
  color: #ffffff;
  font-weight: 500;
}

.hero-progress-track {
  flex: 1;
  max-width: 160px;
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.hero-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange-bright, #F0AC3E), #f8c16a);
  border-radius: 3px;
  transition: width 0.1s linear;
}

/* ============================================================
   STATS BAR - BELOW THE SLIDER
   ============================================================ */

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 18px 40px;
  background: var(--navy-deep, #03275b);
  border-top: 2px solid rgba(255,255,255,0.06);
  margin: 0;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-stat {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.hero-stat:last-child {
  border-right: none;
}
.hero-stat-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--orange-bright, #F0AC3E);
  line-height: 1;
}
.hero-stat-label {
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   RESPONSIVE - Eyebrow lines on mobile
   ============================================================ */
@media (max-width: 768px) {
  .hero-eyebrow {
    font-size: 9px;
    gap: 10px;
  }
  
  .hero-eyebrow::before,
  .hero-eyebrow::after {
    width: 20px;
  }
}

@media (max-width: 480px) {
  .hero-eyebrow {
    font-size: 8px;
    gap: 8px;
  }
  
  .hero-eyebrow::before,
  .hero-eyebrow::after {
    width: 14px;
    height: 1.5px;
  }
  
  .hero-slide[data-align="right"] .hero-eyebrow::before {
    margin-left: 8px;
  }
  .hero-slide[data-align="right"] .hero-eyebrow::after {
    margin-right: 8px;
  }
}

/* ============================================================
   RESPONSIVE - General
   ============================================================ */

/* Large Desktop */
@media (min-width: 1400px) {
  .hero-slide-content {
    padding: 40px 100px;
  }
  .hero-slide[data-align="left"] .hero-slide-content {
    padding-left: 120px;
  }
  .hero-slide[data-align="right"] .hero-slide-content {
    padding-right: 120px;
  }
  .hero-nav-btn.prev { left: 32px; }
  .hero-nav-btn.next { right: 32px; }
}

/* Desktop */
@media (max-width: 1199px) {
  .hero-slide-content {
    padding: 30px 60px;
  }
  .hero-slide[data-align="left"] .hero-slide-content {
    padding-left: 70px;
  }
  .hero-slide[data-align="right"] .hero-slide-content {
    padding-right: 70px;
  }
  .hero-nav-btn {
    width: 48px;
    height: 48px;
  }
  .hero-nav-btn.prev { left: 18px; }
  .hero-nav-btn.next { right: 18px; }
}

/* Tablet */
@media (max-width: 991px) {
  .hero-slide-content {
    padding: 25px 40px;
  }
  .hero-slide[data-align="left"] .hero-slide-content {
    padding-left: 50px;
  }
  .hero-slide[data-align="right"] .hero-slide-content {
    padding-right: 50px;
  }
  .hero-slide[data-align="center"] .hero-slide-content {
    padding-left: 30px;
    padding-right: 30px;
  }
  .hero-nav-btn {
    width: 44px;
    height: 44px;
  }
  .hero-nav-btn svg {
    width: 16px;
    height: 16px;
  }
  .hero-nav-btn.prev { left: 14px; }
  .hero-nav-btn.next { right: 14px; }
  .hero-slider-controls {
    padding: 16px 20px 14px;
    gap: 14px;
  }
  .hero-progress-track {
    max-width: 120px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    padding-top: var(--nav-h);
  }
  
  .hero-slide-content {
    padding: 20px 24px;
  }
  .hero-slide[data-align="left"] .hero-slide-content {
    padding-left: 24px;
  }
  .hero-slide[data-align="right"] .hero-slide-content {
    padding-right: 24px;
  }
  .hero-slide[data-align="center"] .hero-slide-content {
    padding-left: 18px;
    padding-right: 18px;
  }
  
  /* Center all content on mobile */
  .hero-slide[data-align="left"] .hero-content,
  .hero-slide[data-align="right"] .hero-content,
  .hero-slide[data-align="center"] .hero-content {
    max-width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-slide[data-align="left"] .hero-eyebrow,
  .hero-slide[data-align="right"] .hero-eyebrow {
    justify-content: center;
  }
  
  .hero-slide[data-align="right"] .hero-eyebrow::before {
    order: 0;
    margin-left: 0;
    margin-right: 10px;
  }
  .hero-slide[data-align="right"] .hero-eyebrow::after {
    order: 1;
    margin-left: 10px;
    margin-right: 0;
  }
  
  .hero-slide[data-align="left"] .hero-ctas,
  .hero-slide[data-align="right"] .hero-ctas,
  .hero-slide[data-align="center"] .hero-ctas {
    justify-content: center;
  }
  
  .hero-slide[data-align="right"] .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  
  h1.hero-title {
    font-size: clamp(20px, 4vw, 26px);
    margin-bottom: 8px;
  }
  
  .hero-sub {
    font-size: 12px;
    max-width: 100%;
    margin-bottom: 14px;
    line-height: 1.5;
  }
  
  .hero-slide-kicker {
    font-size: 9px;
    margin-bottom: 4px;
  }
  
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .hero .btn-primary,
  .hero .btn-outline {
    width: 100%;
    max-width: 200px;
    justify-content: center;
    padding: 8px 16px;
    font-size: 11px;
  }
  
  .hero-nav-btn {
    width: 40px;
    height: 40px;
  }
  .hero-nav-btn svg {
    width: 14px;
    height: 14px;
  }
  .hero-nav-btn.prev { left: 10px; }
  .hero-nav-btn.next { right: 10px; }
  .hero-nav-btn .nav-label {
    display: none;
  }
  
  /* Mobile overlay - more balanced */
  .hero-slide::after {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0.7) 100%
    ) !important;
  }
  
  .hero-slider-controls {
    padding: 14px 16px 12px;
    gap: 10px;
  }
  
  .hero-slide-counter {
    font-size: 10px;
    padding: 3px 10px;
  }
  
  .hero-progress-track {
    max-width: 80px;
  }
  
  .hero-dots {
    gap: 6px;
  }
  .hero-dot {
    width: 8px;
    height: 8px;
  }
  .hero-dot.active {
    width: 24px;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 12px 16px;
  }
  .hero-stat {
    border-right: none;
  }
  .hero-stat:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.06);
  }
  .hero-stat:nth-child(3),
  .hero-stat:nth-child(4) {
    border-right: none;
  }
  .hero-stat-num {
    font-size: 18px;
  }
  .hero-stat-label {
    font-size: 8px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-slide-content {
    padding: 14px 16px;
  }
  .hero-slide[data-align="left"] .hero-slide-content {
    padding-left: 16px;
  }
  .hero-slide[data-align="right"] .hero-slide-content {
    padding-right: 16px;
  }
  .hero-slide[data-align="center"] .hero-slide-content {
    padding-left: 12px;
    padding-right: 12px;
  }
  
  h1.hero-title {
    font-size: 17px;
    margin-bottom: 6px;
  }
  
  .hero-sub {
    font-size: 11px;
    margin-bottom: 10px;
    line-height: 1.4;
  }
  
  .hero .btn-primary,
  .hero .btn-outline {
    max-width: 160px;
    padding: 6px 14px;
    font-size: 10px;
  }
  
  .hero-nav-btn {
    width: 34px;
    height: 34px;
  }
  .hero-nav-btn svg {
    width: 12px;
    height: 12px;
  }
  .hero-nav-btn.prev { left: 6px; }
  .hero-nav-btn.next { right: 6px; }
  
  .hero-slider-controls {
    padding: 12px 12px 10px;
    gap: 8px;
  }
  
  .hero-slide-counter {
    display: none;
  }
  
  .hero-progress-track {
    max-width: 50px;
    height: 2px;
  }
  
  .hero-dots {
    gap: 5px;
  }
  .hero-dot {
    width: 6px;
    height: 6px;
  }
  .hero-dot.active {
    width: 18px;
  }
  
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    padding: 10px 12px;
  }
  .hero-stat-num {
    font-size: 14px;
  }
  .hero-stat-label {
    font-size: 7px;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .hero-slides-track,
  .hero-slide-bg,
  .hero-slide .hero-eyebrow,
  .hero-slide .hero-slide-kicker,
  .hero-slide h1.hero-title,
  .hero-slide .hero-sub,
  .hero-slide .hero-ctas {
    transition-duration: 0.01ms !important;
  }
  .hero-slide-bg {
    transform: none !important;
  }
  .hero-slide.is-active .hero-eyebrow,
  .hero-slide.is-active .hero-slide-kicker,
  .hero-slide.is-active h1.hero-title,
  .hero-slide.is-active .hero-sub,
  .hero-slide.is-active .hero-ctas {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  .hero-slide::after {
    display: none !important;
  }
}

/* ============================================================
   HERO LOGOS - Centered on all screen sizes
   ============================================================ */

.hero-logos {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  margin-top: 4px;
}

/* Show logos on active slide */
.hero-slide.is-active .hero-logos {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition-delay: 0.55s;
}

.hero-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-logo-link:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--orange-bright, #F0AC3E);
}

.hero-logo {
  height: 60px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  display: block;
  transition: filter 0.3s ease;
}



/* Responsive */
@media (max-width: 768px) {
  .hero-logos {
    gap: 20px;
  }
  
  .hero-logo-link {
    padding: 6px 10px;
  }
  
  .hero-logo {
    height: 45px;
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  .hero-logos {
    gap: 14px;
    flex-direction: row;
  }
  
  .hero-logo-link {
    padding: 4px 8px;
  }
  
  .hero-logo {
    height: 35px;
    max-width: 90px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .hero-logos,
  .hero-logo-link {
    transition-duration: 0.01ms !important;
  }
  .hero-slide.is-active .hero-logos {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}