/* Unified Hero Section Styles for All System Pages */

.unified-hero {
  background: var(--valet-midnight, #031736);
  color: #fff;
  padding: clamp(40px, 6vw, 60px) 0 clamp(30px, 4vw, 40px);
  text-align: center;
}

.unified-hero .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.unified-hero h1 {
  font-family: 'Gilda Display', serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 clamp(40px, 6vw, 64px);
  color: #fff;
  letter-spacing: -0.5px;
}

.unified-hero-svg {
  width: 120%;
  max-width: 840px;
  height: auto;
  margin: 0 auto clamp(32px, 5vw, 48px);
  display: block;
  transform: scale(1.15);
}

/* Remove all shadows and effects from SVGs */
.unified-hero-svg,
.unified-hero-svg img {
  filter: none !important;
  box-shadow: none !important;
  -webkit-filter: none !important;
}

.unified-hero-cta {
  margin-top: 80px;
}

.unified-hero .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 16px 32px;
  font: 700 14px/1 'Nunito Sans', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid #EBC63D;
  background: #EBC63D;
  color: #031736;
  box-shadow: 0 20px 48px rgba(235, 198, 61, 0.35);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.unified-hero .btn-primary:hover {
  background: #cda52b;
  border-color: #cda52b;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .unified-hero h1 {
    font-size: clamp(28px, 8vw, 48px);
  }

  .unified-hero-svg {
    max-width: 90%;
  }
}