.hero {
  position: relative;
  padding-top: 72px;
  overflow: hidden;
  background: var(--bg);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--brand-soft) 0%, var(--bg) 55%, var(--bg) 100%);
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-6) var(--space-4) var(--space-4);
  max-width: 1280px;
  margin: 0 auto;
}

@media (min-width: 1100px) {
  .hero__inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 1010px;
    padding: var(--space-12) 0 var(--space-8);
    gap: var(--space-12);
  }
}

.hero__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-size: var(--text-sm);
  font-weight: 500;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
}

.hero-headline {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--text-1);
}

@media (min-width: 768px) {
  .hero-headline {
    font-size: 3.5rem;
  }
}

@media (min-width: 1100px) {
  .hero-headline {
    font-size: 3.75rem;
  }
}

.hero-headline span {
  color: var(--brand);
}

.hero-sub {
  font-size: var(--text-body-lg);
  color: var(--text-2);
  line-height: 1.65;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-1);
}

.hero-note {
  font-size: var(--text-sm);
  color: var(--text-3);
  margin-top: -4px;
}

.hero__mockup {
  position: relative;
  flex-shrink: 0;
}

.hero .mockup-phone__frame {
  animation: mockup-float 3.2s ease-in-out infinite;
}

.hero__trust {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-4) var(--space-8);
  max-width: 1280px;
  margin: 0 auto;
}

@media (min-width: 1100px) {
  .hero__trust {
    justify-content: center;
    max-width: 1010px;
    padding: var(--space-4) 0 var(--space-8);
  }
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-item__value {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-1);
}

.trust-item__label {
  font-size: var(--text-sm);
  color: var(--text-3);
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border-1);
}
