

.hero-screenshot {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow:
    0 24px 80px rgba(28, 25, 23, 0.10),
    0 8px 24px rgba(28, 25, 23, 0.06),
    0 0 0 1px rgba(28, 25, 23, 0.05),
    0 0 60px rgba(243, 131, 24, 0.06);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.hero-screenshot:hover {
  transform: translateY(-4px);
  box-shadow:
    0 32px 100px rgba(28, 25, 23, 0.12),
    0 12px 32px rgba(28, 25, 23, 0.08),
    0 0 0 1px rgba(28, 25, 23, 0.05),
    0 0 80px rgba(243, 131, 24, 0.08);
}


@media (min-width: 1200px) {
  .hero-mockup {
    margin-right: -40px;
  }

  .hero-screenshot {
    box-shadow:
      0 32px 100px rgba(28, 25, 23, 0.12),
      0 12px 40px rgba(28, 25, 23, 0.08),
      0 0 0 1px rgba(28, 25, 23, 0.04),
      0 0 80px rgba(243, 131, 24, 0.07);
  }

  .mockup-dashboard {
    max-height: 520px;
    padding: 0;
  }

  .dash-stat-value {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .mockup-dashboard {
    max-height: 380px;
  }

  .dash-stat-value {
    font-size: 1.1rem;
  }

  .dash-activity-team {
    min-width: 60px;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .mockup-dashboard {
    max-height: 300px;
  }

  .dash-header {
    padding: 10px 12px;
  }

  .dash-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .dash-stat {
    padding: 10px 8px;
  }

  .dash-stat-value {
    font-size: 1rem;
  }

  .dash-section {
    padding: 10px 12px;
  }

  .dash-activity-team {
    min-width: 50px;
    font-size: 0.65rem;
  }
}
