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

.hero {
  position: relative;
  padding: 5.5rem 1.5rem 4.5rem;
  overflow: hidden;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem 1rem .35rem .5rem;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: #7dd3fc;
}

.hero .badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,.6);
  animation: dotPulse 2s ease-in-out infinite;
}

.hero .hero-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.4rem;
  color: greenyellow;
}

.hero .hero-description {
  max-width: 560px;
  font-size: 1.12rem;
  line-height: 1.75;
  color: #fff;
}
.hero .hero-description p {
 
  color:#dbeafe ;
}
.hero .hero-description strong {
  color: #fff;
  font-weight: 700;
}

.hero .hero-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-rating-box {
  display: inline-flex;
  flex-direction: column;
  gap: .4rem;
  max-width: fit-content;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: .9rem;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

.rating-stars {
  font-size: 1.25rem;
  letter-spacing: 4px;
  color: #f5c518 !important;
}

.rating-info {
  display: flex;
  align-items: baseline;
  gap: .5rem;
}

.rating-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
}

.rating-meta {
  font-size: .875rem;
  color: rgba(255,255,255,.8);
}

.hero .hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2rem;
  font-size: .95rem;
  color: #cfeaf2;
}

.hero .hero-trust span {
  position: relative;
  padding-left: 1.3rem;
}

.hero .hero-trust span::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #38bdf8;
  font-weight: 700;
}

.hero .hero-image-wrapper {
  overflow: hidden;
  border-radius: 1.4rem;
  box-shadow:
    0 20px 50px rgba(0,0,0,.35),
    0 10px 30px rgba(0,0,0,.25);
}

.hero .hero-image {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .hero {
    padding: 1.25rem 0;
    text-align: center;
  }

  .hero .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero .hero-trust {
    justify-content: center;
  }

  .hero-rating-box {
    margin-left: auto;
    margin-right: auto;
  }
}