/* scoped: si-HeroSection */

  .hero-section:where(.si-HeroSection, .si-HeroSection *){
    width: 100%;
    height: 708px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .hero-bg:where(.si-HeroSection, .si-HeroSection *){
    position: absolute;
    inset: 0;
    background-image: url('/Hero%20bottom%20layer.webp');
    background-size: cover;
    background-position: center;
    z-index: 0;
    animation: si-HeroSection-kenBurns 8s ease-in-out infinite alternate;
  }

  .hero-fg:where(.si-HeroSection, .si-HeroSection *){
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center -10%;
    z-index: 1;
    animation: si-HeroSection-slideUp 1.2s ease-out forwards;
  }

  .hero-section > *:not(.hero-bg):not(.hero-fg):where(.si-HeroSection, .si-HeroSection *){
    position: relative;
    z-index: 3;
  }

  @keyframes si-HeroSection-kenBurns {
    from { transform: scale(1.08); }
    to   { transform: scale(1.0); }
  }

  @keyframes si-HeroSection-slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
  }



  html.is-mobile .m-hero:where(.si-HeroSection, .si-HeroSection *){
    width: 429px;
    min-height: 1381px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  html.is-mobile .m-hero:where(.si-HeroSection, .si-HeroSection *)::after{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #FFFFFF 100%);
    z-index: 2;
    pointer-events: none;
  }

  html.is-mobile .m-hero-bg:where(.si-HeroSection, .si-HeroSection *){
    position: absolute;
    inset: 0;
    background-image: url('/Hero%20bottom%20layer%20MOBILE.webp');
    background-size: cover;
    background-position: center top;
    z-index: 0;
  }

  html.is-mobile .m-hero-fg:where(.si-HeroSection, .si-HeroSection *){
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 1;
  }

  html.is-mobile .m-hero-content:where(.si-HeroSection, .si-HeroSection *){
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 70px;
    padding-top: 70px;
    box-sizing: border-box;
  }

  html.is-mobile .m-red:where(.si-HeroSection, .si-HeroSection *){ color: #D62121; }
  html.is-mobile .m-dark:where(.si-HeroSection, .si-HeroSection *){ color: #FFFFFF; }

  /* Animations */
  html.is-mobile .m-hero-bg:where(.si-HeroSection, .si-HeroSection *){
    animation: si-HeroSection-kenBurns 8s ease-in-out infinite alternate;
  }
  html.is-mobile .m-hero-fg:where(.si-HeroSection, .si-HeroSection *){
    animation: si-HeroSection-slideUp 1.2s ease-out forwards;
  }

  /* Top content */
  html.is-mobile .m-hero-top:where(.si-HeroSection, .si-HeroSection *){
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    animation: si-HeroSection-fadeIn 1.2s ease-out forwards;
  }

  html.is-mobile .m-h1:where(.si-HeroSection, .si-HeroSection *){
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
  }

  html.is-mobile .m-h1 .m-dark:where(.si-HeroSection, .si-HeroSection *){
    font-size: 24px;
  }

  html.is-mobile .m-underline:where(.si-HeroSection, .si-HeroSection *){
    width: 80px;
    height: 5px;
    background: #D62121;
    flex-shrink: 0;
  }

  html.is-mobile .m-h2:where(.si-HeroSection, .si-HeroSection *){
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
  }

  html.is-mobile .m-body:where(.si-HeroSection, .si-HeroSection *){
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #FFFFFF;
    margin: 0;
    width: 370px;
    height: 96px;
  }

  html.is-mobile .m-btn-row:where(.si-HeroSection, .si-HeroSection *){
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 370px;
    height: 116px;
  }

  html.is-mobile .m-btn-primary:where(.si-HeroSection, .si-HeroSection *){
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 370px;
    height: 46px;
    padding: 15px 22px;
    gap: 10px;
    border-radius: 4px;
    background: linear-gradient(90deg, #D62121 0%, #701111 100%);
    box-shadow: 0px 4px 20.4px 0px #D62121C2;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color: #FFFFFF;
    text-decoration: none;
  }

  html.is-mobile .m-btn-outline:where(.si-HeroSection, .si-HeroSection *){
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 370px;
    height: 46px;
    padding: 15px 22px;
    gap: 10px;
    border-radius: 4px;
    border: 1.5px solid #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color: #FFFFFF;
    text-decoration: none;
    background: transparent;
  }

  /* Stats */
  html.is-mobile .m-stats:where(.si-HeroSection, .si-HeroSection *){
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: si-HeroSection-fadeIn 1.2s ease-out forwards;
  }

  html.is-mobile .m-stat:where(.si-HeroSection, .si-HeroSection *){
    width: 100%;
    height: 86px;
    border-radius: 8px;
    border-top: 1px solid #FFFFFF;
    border-right: 1px solid #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
    border-left: 4px solid #D62121;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 0 18px;
    box-sizing: border-box;
  }

  html.is-mobile .m-stat-num:where(.si-HeroSection, .si-HeroSection *){
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 35px;
    line-height: 100%;
    color: #D62121;
  }

  html.is-mobile .m-stat-label:where(.si-HeroSection, .si-HeroSection *){
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #272727;
  }

  /* Hero bottom */
  html.is-mobile .m-hero-bottom:where(.si-HeroSection, .si-HeroSection *){
    width: 429px;
    height: 451px;
    background: rgba(255, 255, 255, 0.8);
    padding: 52px 52px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  html.is-mobile .m-info-sep:where(.si-HeroSection, .si-HeroSection *){
    width: 80px;
    height: 1px;
    background: #1A1A1A;
    flex-shrink: 0;
    align-self: center;
  }

  html.is-mobile .m-bottom-title:where(.si-HeroSection, .si-HeroSection *){
    display: block;
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    width: 325px;
    height: 44px;
  }

  html.is-mobile .m-bottom-title .m-dark:where(.si-HeroSection, .si-HeroSection *), html.is-mobile .m-bottom-title .m-red:where(.si-HeroSection, .si-HeroSection *){
    display: inline;
  }

  html.is-mobile .m-bottom-title .m-dark:where(.si-HeroSection, .si-HeroSection *){ color: #272727; }
  html.is-mobile .m-bottom-title .m-red:where(.si-HeroSection, .si-HeroSection *){ color: #D62121; }

  html.is-mobile .m-bottom-divider:where(.si-HeroSection, .si-HeroSection *){
    width: 80px;
    height: 1px;
    background: #1A1A1A;
    flex-shrink: 0;
  }

  html.is-mobile .m-info-col:nth-child(1):where(.si-HeroSection, .si-HeroSection *){
    width: 290px;
    height: 60px;
    gap: 10px;
    display: flex;
    flex-direction: column;
  }

  html.is-mobile .m-info-col:nth-child(2):where(.si-HeroSection, .si-HeroSection *){
    width: 226px;
    height: 62px;
    gap: 10px;
    display: flex;
    flex-direction: column;
  }

  html.is-mobile .m-info-col:nth-child(3):where(.si-HeroSection, .si-HeroSection *){
    width: 290px;
    height: 62px;
    gap: 10px;
    display: flex;
    flex-direction: column;
  }

  html.is-mobile .m-info-col:where(.si-HeroSection, .si-HeroSection *){
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  html.is-mobile .m-info-heading:where(.si-HeroSection, .si-HeroSection *){
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  html.is-mobile .m-info-title:where(.si-HeroSection, .si-HeroSection *){
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #272727;
    margin: 0;
  }

  html.is-mobile .m-info-text:where(.si-HeroSection, .si-HeroSection *){
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    color: #272727;
    margin: 0;
    text-decoration: none;
    text-align: center;
  }

  @keyframes si-HeroSection-kenBurns {
    from { transform: scale(1.08); }
    to   { transform: scale(1.0); }
  }
  @keyframes si-HeroSection-slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
  }
  @keyframes si-HeroSection-fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
