#ulhead a {
    color: aliceblue;
    font-style: italic;
}
footer{
    background-color: #e2e2e23f;
}
svg{
    color: #0f172a;
}
/* Hero */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    padding: 110px 20px 80px;
    text-align: center;
}
.badge {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}
.hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.2;
    margin-bottom: 15px;
}
.highlight { color: var(--accent); }
.hero p {
    font-size: 18px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 30px;
}
.hero-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
