.hero {
  position: relative;
  padding-top: 80px;
  overflow: hidden;
  background: var(--bg-page);
  align-items: center;
  min-height: 460px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 50%;
  background: linear-gradient(160deg, var(--c-teal-500) 0%, var(--c-teal-700) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(20,130,136,.5) 25%,
    rgba(20,130,136,.5) 75%,
    transparent 100%);
}

.hero-content {
  grid-column: content-start / half;
  position: relative; z-index: 1;
  padding-top: 64px;
  padding-bottom: 56px;
  padding-right: 60px;
}

.hero-visual {
  grid-column: half / liquid-end;
  position: relative; z-index: 1;
  align-self: center;
  padding: 56px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px; border-radius: 99px;
  background: rgba(20,130,136,.1);
  border: 1px solid rgba(20,130,136,.28);
  font-size: 11px; font-weight: 600; color: var(--teal);
  letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--teal); border-radius: 50%; flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-family-display);
  font-weight: 800;
  font-size: var(--fs-display);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--c-dark-navy);
  margin-bottom: 28px;
}

.hero-hl {
  background: var(--blue-500);
  color: var(--text-on-brand);
  padding: 5px 18px;
  border-radius: 9px;
  display: inline;
}

.hero-ul {
  text-decoration: underline;
  text-decoration-color: var(--teal);
  text-underline-offset: 8px;
  text-decoration-thickness: 4px;
}

.hero-desc {
  font-size: var(--fs-base); line-height: 1.68;
  color: var(--text-secondary);
  max-width: 460px;
}
.hero-desc + .hero-desc { margin-top: 8px; }
.hero-desc strong { font-weight: 600; color: var(--text-primary); }

.hero-cta-row {
  display: flex; align-items: center; gap: 16px;
  margin-top: 40px; flex-wrap: wrap;
}

.hero-mockup {
  width: 100%; height: auto;
  max-width: 720px;
  border-radius: 14px;
  background: var(--c-white);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.18),
    0 12px 32px rgba(0,0,0,.18),
    0 28px 80px rgba(0,0,0,.28);
  position: relative;
  z-index: 1;
}

.hero-person {
  position: absolute;
  bottom: 0; right: -8%;
  height: 72%; width: auto;
  z-index: 3;
  filter: drop-shadow(0 18px 24px rgba(0,0,0,.25));
}

.hero-trust {
  position: relative; z-index: 2;
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-page);
}

.hero-trust-inner {
  padding: 14px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-item {
  display: flex; align-items: center; gap: 10px;
}

.trust-item-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  color: var(--teal);
}

.trust-item-label {
  font-size: 12px; font-weight: 600;
  color: var(--text-secondary); line-height: 1.3;
}
