.hero {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: white;
  padding: 64px 0 56px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.hero-text { flex: 1; }

.hero-label {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 4px 16px;
  margin-bottom: 20px;
}
.hero-h1 {
  font-family: 'Quicksand', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-p {
  font-size: 16px;
  line-height: 1.65;
  opacity: .88;
  margin-bottom: 28px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-visual {
  flex-shrink: 0;
  width: 300px;
  max-width: 300px;
}
.hero-illustration {
  width: 100%;
  height: auto;
  max-width: 300px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.25));
}
