.hero-true {
    position: relative;
    min-height: 520px;
    color: #f5f5f5;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-true::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.75));
    z-index: 1;
}
.hero-true .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(0.95);
    transform: scale(1.02);
}
.hero-true .hero-content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    padding: 80px 0;
}
.hero-true h1 {
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.05;
    margin: 0 0 20px;
    letter-spacing: -0.5px;
}
.hero-true p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 24px;
    color: #e6edf5;
}
.hero-true .hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.hero-true .btn-primary {
    background: linear-gradient(120deg, #1ed5c1, #0fa5c9);
    border: none;
    color: #0d0d0d;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
}
.hero-true .btn-secondary {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: #f5f5f5;
    padding: 14px 20px;
    border-radius: 12px;
}
@media (max-width: 720px) {
    .hero-true { min-height: 440px; }
    .hero-true .hero-content { padding: 60px 0; }
    .hero-true h1 { font-size: clamp(30px, 6vw, 48px); }
}
