/* Hero is always above fold — never defer its paint */
.hero-banner-section {
  content-visibility: visible;
}

html.dark .hero-stats-bar {
  background: #1e293b;
  border-bottom-color: rgba(255, 255, 255, .08)
}

html.dark .hero-btn-white {
  color: #1d4ed8
}

.hero-banner-section {
  width: 100%;
  position: relative;
  background: #0f172a;
  overflow: hidden
}

.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/5.5;
  min-height: 240px;
  max-height: 440px;
  overflow: hidden
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity .65s ease, transform .65s ease;
  transform: scale(1.02)
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2
}

.hero-slide-1 {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 45%, #1d4ed8 100%)
}

.hero-slide-2 {
  background: linear-gradient(135deg, #1a0533 0%, #2d1b69 45%, #6d28d9 100%)
}

.hero-slide-3 {
  background: linear-gradient(135deg, #0c2340 0%, #0e4d6b 45%, #0891b2 100%)
}

.hero-slide-4 {
  background: linear-gradient(135deg, #1a0d00 0%, #78350f 45%, #d97706 100%)
}

.hero-slide::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  pointer-events: none
}

.hero-slide::after {
  content: '';
  position: absolute;
  left: 20%;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .03);
  pointer-events: none
}

.hero-slide-content {
  position: relative;
  z-index: 3;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 20px
}

.hero-slide-text {
  max-width: 560px;
  flex: 1
}

.hero-slide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .9);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .5px;
  margin-bottom: 14px;
  backdrop-filter: blur(8px)
}

.hero-slide-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  animation: pulse 2s infinite
}

.hero-slide-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .3)
}

.hero-slide-title em {
  font-style: normal;
  color: #fbbf24
}

.hero-slide-sub {
  font-size: clamp(12px, 1.5vw, 15px);
  color: rgba(255, 255, 255, .75);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 460px
}

.hero-slide-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.hero-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: #fff;
  color: var(--blue);
  font-weight: 800;
  font-size: 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  text-decoration: none;
  transition: var(--trans);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .2)
}

.hero-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25)
}

.hero-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  color: rgba(255, 255, 255, .9);
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, .4);
  cursor: pointer;
  font-family: var(--font-body);
  text-decoration: none;
  transition: var(--trans)
}

.hero-btn-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .7)
}

.hero-slide-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0
}

.hero-badge-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
  min-width: 160px
}

.hero-badge-chip-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  flex-shrink: 0
}

.hero-badge-chip-label {
  font-size: 11px;
  opacity: .75;
  display: block;
  margin-top: 1px
}

.hero-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 5;
  transition: var(--trans)
}

.hero-slider-nav:hover {
  background: rgba(255, 255, 255, .3)
}

.hero-slider-prev {
  right: 16px
}

.hero-slider-next {
  left: 16px
}

.hero-slider-bar {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 5
}

.hero-slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .4);
  border: none;
  cursor: pointer;
  transition: all .3s;
  padding: 0
}

.hero-slider-dot.active {
  width: 22px;
  background: #fff
}

.hero-stats-bar {
  background: #fff;
  border-bottom: 1px solid var(--border)
}

.hero-stats-bar-inner {
  display: flex;
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 0 20px
}

.hero-stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-left: 1px solid var(--border)
}

.hero-stat-item:first-child {
  border-left: none
}

.hero-stat-item:last-child {
  padding-left: 20px
}

.hero-stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--blue-pale);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 15px;
  flex-shrink: 0
}

.hero-stat-val {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  display: block
}

.hero-stat-lbl {
  font-size: 11.5px;
  color: var(--text-muted);
  display: block;
  margin-top: 2px
}

.hero {
  display: block;
  background: transparent;
  padding: 0;
  border: none;
  gap: 0;
  grid-template-columns: unset
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: var(--sp-6);
  padding: var(--sp-10) 0 var(--sp-8);
  background: #fff
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -.3px;
  margin-bottom: var(--sp-4);
  color: var(--text)
}

.hero h1 em {
  font-style: normal;
  color: var(--blue)
}

.hero-lead {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: var(--sp-8)
}

.hero-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8)
}

.hero-stat {
  flex: 1;
  padding-left: 24px;
  border-left: 1px solid var(--border)
}

.hero-stat:first-child {
  padding-left: 0;
  border-left: none
}

.hero-stat-val {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  display: block;
  margin-bottom: 4px
}

.hero-stat-lbl {
  font-size: 12px;
  color: var(--text-muted);
  display: block
}

.hero-band {
  background: #fff;
  border-bottom: 1px solid var(--border)
}

.hero-stats-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border)
}

.hero-stat-val {
  color: var(--text);
  font-size: 19px
}

.hero-stat-lbl {
  color: var(--text-muted)
}

.hero-stat-icon {
  border-radius: var(--r3);
  background: var(--blue-50);
  color: var(--blue-600);
  width: 34px;
  height: 34px;
  font-size: 14px
}

.hero-btn-white {
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: var(--weight-bold);
  padding: 10px 20px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .15)
}

.hero-btn-outline {
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: var(--weight-semibold);
  padding: 9px 18px
}

.hero-slider-nav {
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(8px)
}

.hero-slider-nav:hover {
  background: rgba(255, 255, 255, .3)
}

@media(max-width:768px) {
  .hero-slide-badges {
    display: none
  }

  .offer-bg[style*="--offer-bg-mobile"] {
    background-image: var(--offer-bg-mobile);
  }
}

@media(max-width:760px) {
  .hero-stats-bar-inner {
    overflow-x: auto;
    scrollbar-width: none
  }

  .hero-stat-item {
    min-width: 140px;
    padding: 12px 16px
  }
}

@media(max-width:600px) {
  .hero-slide-title {
    font-size: clamp(18px, 5vw, 28px)
  }

  .hero-slide-sub {
    display: none
  }
}

@media(max-width:900px) {
  .hero {
    grid-template-columns: 1fr
  }
}

@media(max-width:480px) {
  .hero-stat {
    flex: unset;
    border-left: none;
    padding-left: 0
  }
}

@media(max-width:900px) {
  .hero {
    grid-template-columns: 1fr
  }
}

@media(max-width:480px) {
  .steps {
    grid-template-columns: 1fr
  }

  .hero-stat {
    flex: unset;
    border-left: none;
    padding-left: 0
  }
}

@media(max-width:760px) {

  button,
  .btn-primary,
  .btn-secondary,
  .btn-send,
  .cat-tab,
  .nav-action-btn,
  .header-cat-link,
  .offer-cta,
  .hero-btn-white,
  .hero-btn-outline {
    min-height: 44px
  }

  * {
    -webkit-tap-highlight-color: transparent
  }
}

@media(max-width:640px) {
  .hero-slider {
    aspect-ratio: unset;
    height: 280px;
    min-height: 0;
    max-height: none
  }

  .hero-slide-content {
    padding: 0 16px;
    width: 100%
  }

  .hero-slide-eyebrow {
    font-size: 10px;
    padding: 3px 10px;
    margin-bottom: 8px
  }

  .hero-slide-title {
    font-size: clamp(17px, 5vw, 22px);
    margin-bottom: 8px;
    line-height: 1.2
  }

  .hero-slide-sub {
    display: none
  }

  .hero-slide-actions {
    gap: 8px;
    flex-wrap: nowrap
  }

  .hero-btn-white,
  .hero-btn-outline {
    padding: 10px 16px;
    font-size: 12.5px;
    min-height: 40px
  }

  .hero-slider-nav {
    width: 32px;
    height: 32px;
    font-size: 11px
  }

  .hero-slider-prev {
    right: 8px
  }

  .hero-slider-next {
    left: 8px
  }
}

@media(max-width:640px) {
  .hero-stats-bar-inner {
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0 12px;
    scroll-snap-type: x mandatory
  }

  .hero-stats-bar-inner::-webkit-scrollbar {
    display: none
  }

  .hero-stat-item {
    flex: 0 0 auto;
    min-width: 130px;
    padding: 12px 14px;
    scroll-snap-align: start
  }

  .hero-stat-item:first-child {
    border-left: none
  }

  .hero-stat-val {
    font-size: 17px
  }

  .hero-stat-lbl {
    font-size: 10.5px
  }

  .hero-stat-icon {
    width: 30px;
    height: 30px;
    font-size: 13px
  }
}

@media(max-width:480px) {
  .hero-slider {
    aspect-ratio: unset;
    height: 240px;
    min-height: 0;
    max-height: none;
    width: 100%
  }

  .hero-slide-content {
    padding: 0 16px;
    width: 100%;
    max-width: 100%
  }

  .hero-slide-text {
    max-width: 100%
  }

  .hero-slide-eyebrow {
    font-size: 10px
  }

  .hero-slide-title {
    font-size: 20px;
    line-height: 1.2
  }

  .hero-slide-sub {
    font-size: 12px;
    display: none
  }

  .hero-slide-badges {
    display: none
  }

  .hero-slide-actions {
    gap: 8px
  }

  .hero-btn-white,
  .hero-btn-outline {
    padding: 9px 16px;
    font-size: 12px
  }

  .hero-stats-bar {
    overflow-x: auto;
    scrollbar-width: none
  }

  .hero-stats-bar::-webkit-scrollbar {
    display: none
  }

  .hero-stats-bar-inner {
    min-width: max-content;
    padding: 0 16px
  }
}

@media (max-width: 768px) {
  .hero-stats-bar-inner {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0 12px
  }

  .hero-stats-bar-inner::-webkit-scrollbar {
    display: none
  }

  .hero-stat-item {
    flex: 0 0 auto;
    min-width: 120px;
    padding: 10px 14px;
    border-left: 1px solid var(--border);
    border-right: none
  }

  .hero-stat-val {
    font-size: 16px
  }

  .hero-stat-lbl {
    font-size: 11px
  }
}


@media (max-width: 768px) {

  /* Replace heavy blur with simpler semi-transparent backgrounds on slow-conn */
  html.slow-conn .bnav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.97);
  }

  html.slow-conn.dark .bnav {
    background: rgba(30, 41, 59, 0.98);
  }

  html.slow-conn .hero-badge-chip,
  html.slow-conn .hero-slider-nav,
  html.slow-conn .svc-fav-btn {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* Hint browser about elements that will animate */
.hero-slide {
  will-change: opacity;
}

.hero-slide.active {
  will-change: auto;
}

@media (max-width: 768px) {

  #featuredSection,
  #services,
  #offersSection,
  #order,
  #reviews,
  .section,
  .section-bridge,
  .footer-wrap {
    overflow-x: hidden;
    max-width: 100vw
  }

  .wrap {
    width: calc(100% - 24px);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
    box-sizing: border-box
  }

  .featured-grid {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: none;
    scrollbar-width: none;
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box
  }

  .featured-grid::-webkit-scrollbar {
    display: none
  }

  .services-grid {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: none;
    scrollbar-width: none;
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box
  }

  .services-grid::-webkit-scrollbar {
    display: none
  }

  .offers-slider-wrap {
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch
  }

  .offers-slider-track {
    width: max-content;
    max-width: unset
  }

  input,
  textarea,
  select,
  button,
  a.btn-primary,
  a.btn-send,
  .btn-send,
  .btn-primary,
  .btn-secondary,
  .field,
  .pick,
  .form-grid,
  .order-form-card,
  .trust-card,
  .review-form-card,
  .review-list-card {
    max-width: 100%;
    box-sizing: border-box
  }

  .hero-slide::before,
  .hero-slide::after,
  .hero-banner-section::before,
  .hero-banner-section::after {
    overflow: hidden;
    max-width: 100vw
  }

  .hero-banner-section {
    overflow: hidden
  }

  .nav-shell {
    max-width: 100vw;
    overflow: visible
  }

  .hero-slider,
  .svc-modal {
    max-width: 100vw;
    overflow: hidden
  }

  p,
  span,
  label,
  h1,
  h2,
  h3,
  h4,
  li,
  td,
  th {
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%
  }

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

.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 5.5;
  min-height: 240px;
  max-height: 440px
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity .6s ease;
  transform: none;
  z-index: 1
}

.hero-slide.active {
  opacity: 1;
  z-index: 2
}

.hero-slide-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 20px;
  box-sizing: border-box
}

.hero-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  z-index: 8;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  border: 1.5px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease;
  flex-shrink: 0
}

.hero-slider-nav:hover,
.hero-slider-nav:active {
  background: rgba(255, 255, 255, .38);
  border-color: rgba(255, 255, 255, .6)
}

.hero-slider-prev {
  right: 12px;
  left: auto
}

.hero-slider-next {
  left: 12px;
  right: auto
}

.hero-slider-bar {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 9;
  width: 100%;
  height: 20px;
  pointer-events: none
}

.hero-slider-dot {
  display: block;
  flex: 0 0 auto;
  flex-grow: 0;
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  min-width: 7px;
  min-height: 7px;
  max-width: 7px;
  max-height: 7px;
  border-radius: 50%;
  padding: 0;
  margin: 0;
  background: rgba(255, 255, 255, .4);
  border: none;
  cursor: pointer;
  pointer-events: auto;
  transition: width .28s cubic-bezier(.4, 0, .2, 1),
    border-radius .28s cubic-bezier(.4, 0, .2, 1),
    background .2s ease;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  box-sizing: content-box
}

.hero-slider-dot.active {
  width: 24px;
  max-width: 24px;
  min-width: 24px;
  height: 7px;
  border-radius: 3.5px;
  background: #ffffff
}

@media (max-width: 768px) {
  .hero-slider {
    height: 270px;
    aspect-ratio: unset;
    min-height: unset;
    max-height: none
  }

  .hero-slide-content {
    padding: 0 52px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    gap: 8px;
    padding-bottom: 30px
  }

  .hero-slide-text {
    max-width: 100%;
    flex: 1;
    min-width: 0
  }

  .hero-slide-badges {
    display: none
  }

  .hero-slide-sub {
    display: none
  }

  .hero-slide-eyebrow {
    font-size: 10px;
    padding: 3px 10px;
    margin-bottom: 6px
  }

  .hero-slide-title {
    font-size: clamp(16px, 4.5vw, 22px);
    margin-bottom: 10px;
    line-height: 1.25
  }

  .hero-slide-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    align-items: center
  }

  .hero-btn-white,
  .hero-btn-outline {
    flex: 1 1 0;
    min-width: 0;
    max-width: 50%;
    padding: 9px 10px;
    font-size: 12px;
    min-height: 40px;
    border-radius: 999px;
    font-weight: 700;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
  }

  .hero-btn-white {
    box-shadow: 0 3px 14px rgba(0, 0, 0, .22)
  }

  .hero-slider-nav {
    width: 34px;
    height: 34px;
    font-size: 11px;
    top: 50%;
    transform: translateY(-65%)
  }

  .hero-slider-prev {
    right: 8px;
    left: auto
  }

  .hero-slider-next {
    left: 8px;
    right: auto
  }

  .hero-slider-bar {
    bottom: 10px;
    height: 18px;
    gap: 5px
  }

  .hero-slider-dot {
    width: 6px;
    height: 6px;
    min-width: 6px;
    max-width: 6px;
    min-height: 6px;
    max-height: 6px;
    flex: 0 0 6px
  }

  .hero-slider-dot.active {
    width: 20px;
    max-width: 20px;
    min-width: 20px;
    height: 6px;
    border-radius: 3px
  }
}

@media (max-width: 380px) {
  .hero-slider {
    height: 250px
  }

  .hero-slide-content {
    padding: 0 46px 28px
  }

  .hero-slide-title {
    font-size: 15px
  }

  .hero-btn-white,
  .hero-btn-outline {
    font-size: 11px;
    padding: 8px 8px;
    min-height: 36px
  }

  .hero-slider-nav {
    width: 30px;
    height: 30px;
    font-size: 10px
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 280px;
    aspect-ratio: unset;
    min-height: unset;
    max-height: none;
    position: relative;
    overflow: hidden
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: stretch
  }

  .hero-slide-content {
    position: relative;
    inset: unset;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 16px 20px 20px;
    box-sizing: border-box;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 0;
    height: 100%
  }

  .hero-slide-text {
    max-width: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 0
  }

  .hero-slide-eyebrow {
    font-size: 10px;
    padding: 3px 10px;
    margin-bottom: 10px;
    align-self: flex-start;
    display: inline-flex
  }

  .hero-slide-title {
    font-size: clamp(20px, 5.5vw, 26px);
    line-height: 1.1;
    margin-bottom: 18px
  }

  .hero-slide-sub {
    display: none
  }

  .hero-slide-badges {
    display: none
  }

  .hero-slide-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: nowrap;
    padding: 0;
    width: auto
  }

  .hero-btn-white {
    flex: 0 0 auto;
    min-width: 0;
    justify-content: center;
    padding: 10px 20px;
    font-size: 11.5px;
    height: auto;
    min-height: 40px;
    max-height: none;
    line-height: 1;
    border-radius: 14px;
    font-weight: 800;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    color: var(--blue);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .25)
  }

  .hero-btn-outline {
    flex: 0 0 auto;
    min-width: 0;
    justify-content: center;
    padding: 10px 20px;
    font-size: 11.5px;
    height: auto;
    min-height: 40px;
    max-height: none;
    line-height: 1;
    border-radius: 14px;
    font-weight: 800;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, .12);
    border: 1.5px solid rgba(255, 255, 255, .25);
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px)
  }

  .hero-slider-nav {
    display: none
  }

  .hero-slider-bar {
    position: absolute;
    bottom: 27px;
    left: 20px;
    right: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    z-index: 10;
    flex-wrap: nowrap
  }

  .hero-slider-dot {
    width: 6px;
    height: 6px;
    min-width: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    border: none;
    padding: 0;
    cursor: pointer;
    flex: 0 0 6px;
    transition: width .3s ease, background .3s ease
  }

  .hero-slider-dot.active {
    width: 20px;
    flex: 0 0 20px;
    height: 6px;
    border-radius: 3px;
    background: #fff
  }

  .hero-stats-bar-inner {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0 8px
  }

  .hero-stats-bar-inner::-webkit-scrollbar {
    display: none
  }

  .hero-stat-item {
    flex: 0 0 auto;
    min-width: 110px;
    padding: 10px 12px;
    border-left: 1px solid var(--border);
    border-right: none
  }

  .hero-stat-val {
    font-size: 15px
  }

  .hero-stat-lbl {
    font-size: 10px
  }
}