/* --- HERO SEKCE --- */
.hero {

    background-color: #0a0b10;
    background-image: 
        radial-gradient(circle at 20% 40%, rgba(13, 80, 224, 0.25) 0%, rgba(11, 61, 168, 0) 85%),
        linear-gradient(180deg, #0d0e15 0%, #07080c 100%);
    padding-top: clamp(80px, 8vw, 100px);
    overflow: hidden;
}

/* --- NADPISY --- */
.hero-h1 {
    margin: 0 0 20px 0;
    font-size: clamp(44px, 8vw, 80px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--white);
}

.hero-h1 span.highlight {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-azure) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-bottom: 0.1em;
}

.hero-h2 {
    color: var(--hero-text);
    font-weight: 300;
    font-size: 18px;
    line-height: 1.65;
    max-width: 600px;
    letter-spacing: 0.01em;
}

/* TLAČÍTKA A AVATAR */
.hero-buttons { margin-top: 30px; }

.hero-avatar {
    display: block;
    width: 100%;
    max-width: 480px;
    height: auto;
    margin: 0 auto;
}

/* --- DESKTOP (992px+) --- */
@media (min-width: 992px) {
    .hero .row { align-items: stretch; }
    .hero .row .col-lg-6:first-child { display: flex; flex-direction: column; justify-content: center; padding-bottom: 40px; }
    .hero .row .col-lg-6:last-child { display: flex; align-items: flex-end; justify-content: flex-end; }
}

/* --- MOBIL (do 991.98px) --- */
@media (max-width: 991.98px) {
    .hero-h1 { margin-top: 35px; }
    .hero-avatar { max-width: 340px; margin-top: 30px; }
}