/* scoped: si-HeroTop */

  .hero-top:where(.si-HeroTop, .si-HeroTop *){
    width: 100%;
    height: 548px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0);
    padding: 0 52px;
    box-sizing: border-box;
  }

  .content-box:where(.si-HeroTop, .si-HeroTop *){
    width: 100%;
    height: 398px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .left-col:where(.si-HeroTop, .si-HeroTop *){
    width: 700px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    animation: si-HeroTop-fadeIn 1.2s ease-out forwards;
  }

  /* ── Right col ── */
  .right-col:where(.si-HeroTop, .si-HeroTop *){
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    margin-right: 40px;
    animation: si-HeroTop-fadeIn 1.2s ease-out forwards;
  }

  .stat-box:where(.si-HeroTop, .si-HeroTop *){
    width: 250px;
    height: 86px;
    border-radius: 8px;
    border-top: 2px solid #FFFFFF;
    border-right: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
    border-left: 4px solid #D62121;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 0 18px;
  }

  .stat-number:where(.si-HeroTop, .si-HeroTop *){
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 35px;
    line-height: 100%;
    text-transform: uppercase;
    color: #D62121;
  }

  .stat-label:where(.si-HeroTop, .si-HeroTop *){
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #FFFFFF;
  }

  /* ── H1 ── */
  .h1-block:where(.si-HeroTop, .si-HeroTop *){
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .hero-h1:where(.si-HeroTop, .si-HeroTop *){
    display: flex;
    flex-direction: column;
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 58px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    margin: 0;
  }

  .hero-h1 .red:where(.si-HeroTop, .si-HeroTop *){ color: #D62121; }
  .hero-h1 .dark:where(.si-HeroTop, .si-HeroTop *){ color: #272727; }

  .underline:where(.si-HeroTop, .si-HeroTop *){
    width: 80px;
    height: 5px;
    background: #D62121;
    border-radius: 2px;
  }

  /* ── H2 ── */
  .hero-h2:where(.si-HeroTop, .si-HeroTop *){
    width: 680px;
    font-family: 'Afacad', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #272727;
    margin: 0;
  }

  /* ── Body ── */
  .hero-body:where(.si-HeroTop, .si-HeroTop *){
    width: 580px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0;
    color: #272727;
    margin: 0;
  }

  /* ── Buttons ── */
  .btn-row:where(.si-HeroTop, .si-HeroTop *){
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .btn-primary:where(.si-HeroTop, .si-HeroTop *){
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 174px;
    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;
    white-space: nowrap;
    transition: opacity 0.2s;
  }

  .btn-primary:hover:where(.si-HeroTop, .si-HeroTop *){ opacity: 0.9; }

  .btn-outline:where(.si-HeroTop, .si-HeroTop *){
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 46px;
    padding: 15px 22px;
    gap: 10px;
    border-radius: 4px;
    border: 1.5px solid #272727;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color: #272727;
    text-decoration: none;
    white-space: nowrap;
    background: transparent;
    transition: background 0.2s, color 0.2s;
  }

  .btn-outline:hover:where(.si-HeroTop, .si-HeroTop *){
    background: #272727;
    color: #fff;
  }

  @keyframes si-HeroTop-fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
