/* === Hero section === */
.hero-section {
    background-color: #f9fafb;
}

.text-brand-dark {
    color: var(--brand-dark);
}

/* Outline brand button (do "Zobacz demo") */
.btn-outline-brand {
    background-color: transparent;
    border: 2px solid var(--brand-primary);
    color: var(--brand-primary);
    border-radius: 6px;
    transition: all 0.2s ease;
}
.btn-outline-brand:hover {
    background-color: var(--brand-primary);
    color: #fff;
    transform: translateY(-1px);
}

/* Box po prawej stronie */
.hero-box {
    max-width: 480px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* === Baner apki mobilnej === */
.app-launch-strip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #cfe2ff;
    border: 1px solid #9ec5fe;
    border-radius: 50px;
    padding: 0.4rem 1.1rem;
    font-size: 0.875rem;
    flex-wrap: wrap;
}
.app-launch-badge {
    background: #0d6efd;
    color: #fff;
    font-weight: 700;
    font-size: 0.68rem;
    padding: 0.2rem 0.55rem;
    border-radius: 50px;
    letter-spacing: 0.06em;
    white-space: nowrap;
}
.app-launch-text {
    color: #084298;
}
.app-launch-link {
    color: #084298;
    font-weight: 600;
    text-decoration: underline;
    white-space: nowrap;
}
.app-launch-link:hover {
    color: #0d6efd;
}

/* Responsywność */
@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
    }
    .hero-section .d-flex {
        justify-content: center;
    }
    .app-launch-strip {
        justify-content: center;
    }
}
