/* Hero (clean) */ .bt-hero{ position: relative; background-size: cover; background-position: center; padding: clamp(60px, 8vw, 140px) 0; color: #fff; } .bt-hero__overlay{ position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.35)); } .bt-hero__inner{ position: relative; z-index: 1; text-align: center; max-width: 900px; margin: 0 auto; } .bt-hero__title{ margin: 0 0 .5rem; font-size: clamp(28px, 5vw, 52px); line-height: 1.1; color: #fff; } .bt-hero__subtitle{ margin: 0 auto 1.25rem; font-size: clamp(15px, 2.2vw, 20px); opacity: .95; color: #fff; max-width: 820px; } .bt-hero__btn{ display: inline-block; margin-top: .25rem; padding: .8rem 1.2rem; border-radius: .6rem; text-decoration: none; } .bt-hero__btn:focus-visible{ outline: 2px solid #fff; outline-offset: 2px; } .bt-hero__badges{ margin: 1.2rem 0 0; padding: 0; list-style: none; display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; font-size: .95rem; opacity: .95; } /* motion-reduction */ @media (prefers-reduced-motion: reduce){ .bt-hero, .bt-hero__overlay, .bt-hero__btn{ transition: none !important; } }