.hero {
  background: var(--orange);
  color: var(--text-on-orange);
  padding: 5rem 0 0;
  overflow: hidden;
}

.hero__inner {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,232,208,0.18);
  border: 1px solid rgba(255,232,208,0.35);
  color: var(--bg-main);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero__badge .check { color: #4ade80; }

.hero__h1 {
  color: var(--bg-main);
  margin-bottom: 1.25rem;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.1;
}

.hero__subtitle {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-on-dark);
  margin-bottom: 2.5rem;
  line-height: 1.65;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.hero__link {
  font-size: 16px;
  color: var(--bg-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: color 150ms;
}
.hero__link:hover { color: var(--bg-main); }

.hero__trust {
  font-size: 13px;
  color: rgba(255,232,208,0.65);
  margin-bottom: 3rem;
  letter-spacing: 0.02em;
}
.hero__trust span { margin: 0 0.6rem; }

/* Logos carrusel area */
.hero__logos-area {
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
  padding-bottom: 3rem;
}
.hero__logos-area::before,
.hero__logos-area::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.hero__logos-area::before { left: 0; background: linear-gradient(to right, var(--orange), transparent); }
.hero__logos-area::after  { right: 0; background: linear-gradient(to left, var(--orange), transparent); }

@media (max-width: 600px) {
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; }
}
