/* ======================================
   TRUSTYBULL — REFINED CINEMATIC HERO
====================================== */

.hero{
  position:relative;
  height:78vh;
  min-height:580px;
  background:#000;
  overflow:hidden;
  margin-bottom:24px;
}

/* ================= SLIDE ================= */

.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center 35%;
  opacity:0;
  transition:opacity .9s ease;
}

.hero-slide.active{
  opacity:1;
}


/* ================= CONTENT ================= */

.hero-content{
  position:absolute;
  bottom:16%;
  left:8%;
  max-width:640px;
  z-index:5;
  color:#fff;
}

/* TITLE — elegant not loud */
.hero-content h1{
  font-size:54px;
  font-weight:800;
  line-height:1.08;
  letter-spacing:-.015em;
  margin:0;

  text-shadow:
    0 8px 28px rgba(0,0,0,.85);
}

/* PUNCHLINE — subtle secondary */
.hero-content p{
  margin-top:14px;
  font-size:17px;
  line-height:1.6;
  font-weight:400;
  color:rgba(226,232,240,.85);
  max-width:90%;
}

/* ================= ACTIONS ================= */

.hero-actions{
  margin-top:26px;
  display:flex;
  gap:14px;
}

.hero-actions button{
  height:44px;
  padding:0 26px;
  border:none;
  border-radius:8px;
  font-weight:700;
  font-size:14px;
  letter-spacing:.04em;
  cursor:pointer;
  transition:all .25s ease;
}

.hero-actions .play{
  background:#fff;
  color:#000;
}

.hero-actions .play:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 35px rgba(255,255,255,.25);
}

/* ================= DOTS ================= */

.hero-dots{
  position:absolute;
  bottom:30px;
  right:50px;
  display:flex;
  gap:10px;
  z-index:10;
}

.hero-dots span{
  width:7px;
  height:7px;
  border-radius:50%;
  background:rgba(255,255,255,.3);
  cursor:pointer;
  transition:.25s ease;
}

.hero-dots span.active{
  width:20px;
  border-radius:999px;
  background:#ffffff;
}

/* ======================================
   HERO — MOBILE REFINED
====================================== */

@media (max-width: 768px){

  .hero{
    height:60vh;
    min-height:420px;
    margin-bottom:16px;
  }

  .hero-slide{
    background-position:center 25%;
  }

  .hero-content{
    left:0;
    right:0;
    bottom:14%;
    padding:0 22px;
    max-width:100%;
  }

  .hero-content h1{
    font-size:34px;
    line-height:1.15;
    font-weight:750;
  }

  .hero-content p{
    font-size:15px;
    line-height:1.6;
    max-width:100%;
  }

  .hero-actions{
    margin-top:18px;
  }

  .hero-actions button{
    height:40px;
    padding:0 18px;
    font-size:13px;
  }

  /* Center dots on mobile */
  .hero-dots{
    right:auto;
    left:50%;
    transform:translateX(-50%);
    bottom:18px;
  }
}

/* Extra small */
@media (max-width: 420px){

  .hero{
    height:55vh;
    min-height:380px;
  }

  .hero-content h1{
    font-size:30px;
  }
}


/* =========================
   HERO
========================= */

.gbl_hero{
  padding:56px 56px 42px;
  background:
    radial-gradient(circle at 20% 20%, rgba(229,9,20,.14), transparent 50%),
    radial-gradient(circle at 80% 10%, rgba(255,180,90,.08), transparent 55%),
    linear-gradient(180deg,#050505 0%, #0b0b0b 60%, #000 100%);
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:32px;
  border-bottom:1px solid rgba(255,255,255,.05);
}

/* left */
.gbl_hero_left{max-width:60%}

.gbl_hero_breadcrumb{
  font-size:11px;
  letter-spacing:.3em;
  color:#9ca3af;
  text-transform:uppercase;
  margin-bottom:12px;
}

.gbl_hero_title{
  font-size:44px;
  font-weight:900;
  letter-spacing:-.03em;
  margin-bottom:10px;
  color:#f9fafb;
}

.gbl_hero_sub{
  color:rgba(229,231,235,.75);
  line-height:1.6;
  font-size:15px;
  max-width:640px;
}


.gbl_hero_right{
  display:flex;
  gap:14px;
  align-items:center;
}


/* =========================
   HERO — MOBILE FIRST FIX
========================= */

@media (max-width: 900px){

  .gbl_hero{
    flex-direction:column;
    align-items:flex-start;
    padding:32px 20px 28px;
    gap:20px;
  }

  .gbl_hero_left{
    max-width:100%;
  }

  .gbl_hero_breadcrumb{
    font-size:10px;
    letter-spacing:.22em;
    margin-bottom:8px;
  }

  .gbl_hero_title{
    font-size:28px;
    line-height:1.15;
    letter-spacing:-.02em;
    margin-bottom:8px;
  }

  .gbl_hero_sub{
    font-size:14px;
    line-height:1.55;
    max-width:100%;
  }

  .gbl_hero_right{
    width:100%;
    justify-content:flex-start;
    flex-wrap:wrap;
    gap:10px;
  }

}


/* =========================
   SMALL MOBILE (<=480px)
========================= */

@media (max-width: 480px){

  .gbl_hero{
    padding:26px 16px 22px;
  }

  .gbl_hero_title{
    font-size:24px;
  }

  .gbl_hero_sub{
    font-size:13.5px;
  }

}
