.hm-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    margin-bottom: 48px;
}
.hm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 41px;
    padding: 0 28px;
    border-radius: 10px;
    font-family: 'Jura', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-sizing: border-box;
    transition: border-color .2s, color .2s, background .2s;
}
.hm-btn-primary {
    background: #FF8600;
    color: #ffffff;
    border: 1px solid #FF8600;
}
.hm-btn-primary:hover { background: #ff9a2e; border-color: #ff9a2e; }
.hm-btn-secondary {
    background: #212121;
    color: #999999;
    border: 1px solid #3e3e3e;
}
.hm-btn-secondary:hover { border-color: rgba(255,145,0,.4); color: #f2f2f2; }
.hm-cards {
    display: flex;
    gap: 0;
    justify-content: space-between;
}
.hm-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 40px;
}
.hm-card-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 24px rgba(255,134,0,.5));
}
.hm-card-text {
    font-family: 'Jura', sans-serif;
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
}
