.hero {
    margin: 32px 0;
    border-radius: 24px;
    overflow: hidden;
    background: var(--bg-hero);
    color: var(--hero-text-color);
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}
.hero-btn {
    display: inline-block;
    padding: 10px 28px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    background: var(--hero-btn-bg);
    color: var(--hero-btn-color);
    text-decoration: none !important;
    transition: background .2s, transform .1s;
    box-sizing: border-box;
    line-height: 1.4;
}
.hero-btn:hover {
    transform: translateY(-1px);
}

.hero-btn-outline {
    background: transparent;
    color: var(--hero-text-color);
    border: 2px solid rgba(255,255,255,0.5);
    padding: 8px 26px;
}
.hero-btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--hero-text-color);
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

@media (max-width: 768px) {
    .hero {
        height: 200px;
    }
    .hero h2 {
        font-size: 1.4rem;
    }
}
