    .hero {
    position: relative;
    overflow: hidden;
    background: url(https://www.safeaeon.com/assets/img/hero-banner-bg.png);
    background-size: cover;
}

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 18% 24%, rgba(0, 0, 0, 0.55), transparent 28%),
        radial-gradient(circle at 85% 12%, rgba(146, 227, 255, 0.18), transparent 24%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.28));
      pointer-events: none;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 3px 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.22);
      font-size: 10px;
      line-height: 1;
    }

    .top-select {
      display: inline-flex;
      align-items: center;
      padding: 4px 10px;
      border-radius: 999px;
      background: #ffffff;
      color: #0d2c55;
      font-size: 10px;
      font-weight: 700;
    }

    .content {
      position: relative;
      z-index: 2;
      max-width: 1080px;
      margin: 0 auto;
      padding: 0px 20px 36px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    h1 {
      margin: 18px 0 16px;
      font-size: clamp(42px, 6vw, 76px);
      line-height: 1.15em;
      font-weight: 700;
      letter-spacing: -0.03em;
      max-width: 900px;
      color:#fff;
    }

    h1 .accent {
      color: #19c2e6;
    }

    .subtext {
      max-width: 930px;
      font-size: 18px;
      line-height: 1.55;
      color: #fff;
      margin-bottom: 42px;
    }

    .actions{
  position: relative;
  width: 100%;
  max-width: 680px;
  margin-bottom:48px;
}

.email-input{
  width: 100%;
  height: 64px;
  padding: 0 170px 0 24px; /* right space for button */
  border: none;
  outline: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 20px;
}

.email-input::placeholder{
  color: rgba(255,255,255,0.55);
}

.hero .cta{
position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    /* height: 48px; */
    /* padding: 0 26px; */
    border: none;
    border-radius: 999px;
    /* background: #f7931e; */
    color: #fff;
    /* font-size: 22px; */
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.trust-note{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  color:#fff;
  font-size:14px;
  letter-spacing:.3px;
  margin-bottom:20px;
}

.trust-note::before,
.trust-note::after{
  content:"";
  width:46px;
  height:1px;
  display:block;
  background:linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.85) 45%,
    rgba(255,255,255,0) 100%
  );
}

.logos-slider{
  width:100%;
  overflow:hidden;
  position:relative;
  padding:20px 0;
}

.logos-track{
  display:flex;
  align-items:center;
  gap:60px;
  width:max-content;
  animation:scrollLogos 25s linear infinite;
}

.logos-track span{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
}

.logos-track img{
  height:42px; /* adjust size */
  width:auto;
  object-fit:contain;
  display:block;
  opacity:0.95;
  transition:0.3s ease;
}

.logos-track img:hover{
  opacity:1;
  transform:scale(1.05);
}

@keyframes scrollLogos{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-50%);
  }
}

    .bottom-strip {
      width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 0 24px;
  grid-template-columns: 1.55fr repeat(4, 1fr);
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
    }

    .bottom-note {
      max-width: 285px;
  font-size: 11px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.86);
    }

    .stat {
      min-height: 54px;
  padding-left: 28px;
  border-left: 1px solid rgba(25, 194, 230, 0.22);
  display: flex;
  flex-direction: column;
  justify-content: center;
    }

    .stat .value {
      font-size: 42px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -1.5px;
  color: #19c2e6;
    }

    .stat .label {
      margin-top: 7px;
  font-size: 11px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.84);
  text-transform: capitalize;
    }

    @media (max-width: 991px) {
      .bottom-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }

  .bottom-note {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .stat {
    padding-left: 20px;
  }
    }

    @media (max-width: 575px) {

      h1 {
        font-size: 40px;
      }

      .subtext {
        font-size: 14px;
      }

      .bottom-strip {
    grid-template-columns: 1fr;
  }

  .stat {
    border-left: 0;
    padding-left: 0;
  }

  .stat .value {
    font-size: 36px;
  }
    }