.hero {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.hero__layout {
  display: flex;
  gap: var(--space-48);
  align-items: stretch;
}

.hero__content {
  flex: 1 1 0;
  min-width: 0;
  display: grid;
  gap: var(--space-12);
}

.hero__actions + .trust-badge-row {
  margin-top: 6px;
}

.hero__highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.hero__highlight {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  font-size: 0.83rem;
  line-height: 1.35;
  color: var(--color-ocean-900);
}

.trust-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-badge-row + .hero__highlights {
  margin-top: 8px;
}

.trust-badge-row li {
  padding: 5px 8px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-ocean-900);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__visual {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
}

.hero__image-frame {
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.hero__image-canvas {
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background-image: url("../images/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-trust {
  padding-bottom: var(--space-24);
}

.hero-stats {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.hero-stat {
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-stat__logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-stat strong {
  display: block;
  color: var(--color-ocean-900);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}
