/* Home hero — fresh split layout with service chips and trust stats */

.hero-home {
  position: relative;
  overflow: hidden;
  padding-top: clamp(7.5rem, 14vw, 10.5rem);
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.hero-home > .container {
  padding-inline: clamp(1.5rem, 6vw, 5.5rem);
}

.hero-home__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(26, 28, 25, 0.08), transparent 42%),
    radial-gradient(circle at 88% 12%, rgba(74, 77, 72, 0.1), transparent 38%),
    linear-gradient(180deg, #f7f8f6 0%, #ffffff 52%, #f1f2ef 100%);
  z-index: 0;
}

.hero-home__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 28, 25, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 28, 25, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 88%);
}

.hero-home__row {
  max-width: 1280px;
  margin-inline: auto;
}

.hero-home__content {
  max-width: 36rem;
}

.hero-home__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.95rem;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(26, 28, 25, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: #1a1c19;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-home__badge i {
  font-size: 1rem;
  line-height: 1;
}

.hero-home__content h1 {
  margin-bottom: 1.1rem;
  font-size: clamp(2.2rem, 4.8vw, 3.65rem);
  line-height: 1.08;
  color: #121311;
  font-weight: 700;
}

.hero-home__accent {
  display: inline-block;
  color: #1a1c19;
  position: relative;
}

.hero-home__accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.12em;
  height: 0.34em;
  background: rgba(26, 28, 25, 0.14);
  border-radius: 999px;
  z-index: -1;
}

.hero-home__lead {
  margin-bottom: 1.75rem;
  max-width: 32rem;
  color: #5a5d57;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.7;
}

.hero-home__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.hero-home__btn {
  min-width: 10.5rem;
}

.hero-home__btn--ghost {
  background-color: transparent !important;
  color: #1a1c19 !important;
  border-color: #1a1c19 !important;
  box-shadow: none !important;
}

.hero-home__btn--ghost:hover {
  background-color: #1a1c19 !important;
  color: #fff !important;
}

.hero-home__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-home__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(26, 28, 25, 0.1);
  background: #fff;
  color: #1a1c19;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(26, 28, 25, 0.05);
}

.hero-home__chip i {
  font-size: 1rem;
  line-height: 1;
}

.hero-home__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 28rem;
  padding: 1.5rem 0;
}

.hero-home__glow {
  position: absolute;
  width: min(88%, 32rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 28, 25, 0.16), transparent 68%);
  filter: blur(8px);
}

.hero-home__phone-card {
  position: relative;
  z-index: 1;
  width: min(100%, 28rem);
  padding: 1rem;
  border-radius: 2rem;
  border: 1px solid rgba(26, 28, 25, 0.1);
  background: linear-gradient(180deg, #ffffff 0%, #f3f4f1 100%);
  box-shadow:
    0 24px 50px rgba(26, 28, 25, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset;
}

.hero-home__phone-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.35rem;
}

.hero-home__float {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: #1a1c19;
  color: #fff;
  box-shadow: 0 16px 30px rgba(26, 28, 25, 0.22);
  min-width: 12.5rem;
}

.hero-home__float strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.2;
}

.hero-home__float small {
  display: block;
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.hero-home__float-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.hero-home__float-icon i {
  font-size: 1.15rem;
  line-height: 1;
}

.hero-home__float--top {
  top: 8%;
  left: 0;
}

.hero-home__float--bottom {
  right: 0;
  bottom: 10%;
}

.hero-home__stats {
  max-width: 1280px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}

.hero-home__stat {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  height: 100%;
  padding: 1.15rem 1.2rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(26, 28, 25, 0.08);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(26, 28, 25, 0.05);
}

.hero-home__stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.85rem;
  background: #1a1c19;
  color: #fff;
  flex-shrink: 0;
}

.hero-home__stat-icon i {
  font-size: 1.2rem;
  line-height: 1;
}

.hero-home__stat h3 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
  color: #121311;
}

.hero-home__stat p {
  margin-bottom: 0;
  color: #5a5d57;
  font-size: 0.92rem;
  line-height: 1.55;
}

@media (min-width: 992px) {
  .hero-home > .container {
    padding-inline: clamp(2.5rem, 7vw, 5.5rem);
  }

  .hero-home__visual {
    min-height: 34rem;
  }

  .hero-home__phone-card {
    width: min(100%, 34rem);
  }

  .hero-home__float--top {
    left: 4%;
  }

  .hero-home__float--bottom {
    right: 2%;
  }
}

@media (min-width: 1400px) {
  .hero-home > .container {
    padding-inline: clamp(3.5rem, 9vw, 7rem);
  }

  .hero-home__phone-card {
    width: min(100%, 38rem);
  }

  .hero-home__visual {
    min-height: 36rem;
  }
}

@media (max-width: 991px) {
  .hero-home__float {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero-home {
    padding-top: 6.5rem;
  }

  .hero-home__content {
    text-align: center;
    margin-inline: auto;
  }

  .hero-home__lead {
    margin-inline: auto;
  }

  .hero-home__actions,
  .hero-home__chips {
    justify-content: center;
  }

  .hero-home__btn {
    width: 100%;
    max-width: 18rem;
  }

  .hero-home__visual {
    min-height: auto;
    margin-top: 0.5rem;
  }
}
